-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "teamtrack",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "nodemon server/server.js",
"build": "babel server -d build",
"start": "node build/server.js",
"deploy:dev": "docker-compose up",
"deploy:dev:build": "docker-compose up --build",
"deploy:prod": "yarn build && ./docker-build.sh && ./k8s-deploy.sh"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"dotenv": "^5.0.1",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"graphql": "^0.13.2",
"graphql-redis-subscriptions": "^1.5.0",
"graphql-server-express": "^1.3.2",
"graphql-subscriptions": "^0.5.8",
"graphql-tools": "^2.23.1",
"jsonwebtoken": "^8.2.0",
"lodash": "^4.17.5",
"morgan": "^1.9.0",
"rethinkdbdash": "^2.3.31",
"subscriptions-transport-ws": "^0.9.7",
"url": "^0.11.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.9.0",
"nodemon": "^1.17.2"
},
"nodemonConfig": {
"verbose": false,
"ignore": [
"node_modules"
],
"env": {
"NODE_ENV": "development",
"BABEL_DISABLE_CACHE": 1
},
"execMap": {
"js": "babel-node"
},
"ext": ".js,.json,.graphql,.gql",
"watch": "./server"
},
"eslintConfig": {
"extends": "airbnb-base",
"plugins": [
"import"
],
"rules": {
"indent": [
4,
"space"
],
"comma-dangle": "off",
"no-console": "off",
"function-paren-newline": "off",
"no-param-reassign": "off",
"arrow-body-style": "off",
"import/prefer-default-export": "off",
"no-underscore-dangle": "off",
"no-mixed-operators": "off",
"import/no-named-as-default-member": "off"
}
}
}