-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
71 lines (71 loc) · 1.68 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
{
"name": "ide-backend",
"version": "0.0.0",
"scripts": {
"start": "node api/server.js",
"dev": "nodemon --exec node api/server.js",
"test": "mocha --timeout 60000 --exit test/**/*.js",
"husky-init": "node node_modules/husky/husky.js install",
"prettier": "prettier --config .prettierrc --ignore-path .eslintignore --write"
},
"dependencies": {
"@google-cloud/pubsub": "^2.1.0",
"ajv": "^6.10.2",
"ajv-errors": "^1.0.1",
"axios": "^0.19.0",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"google-auth-library": "^5.10.0",
"grpc": "^1.24.2",
"http-errors": "~1.8.0",
"http-status-codes": "^1.4.0",
"mongoose": "^5.9.21",
"underscore": "^1.9.2"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-google": "^0.13.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run prettier",
"git add",
"eslint --ignore-path .eslintignore --config .eslintrc.json"
]
},
"engines": {
"node": "8 || 10",
"npm": ">= 5",
"yarn": ">= 1"
},
"nodemonConfig": {
"ignore": [
"test/",
"**/*.spec.js",
"docs/"
],
"delay": 1000
},
"bugs": {
"email": "[email protected]"
}
}