-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.15 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --exit --reporter=list tests/**/*",
"start": "node server.js",
"dev": "nodemon server.js -e html,js",
"lint": "eslint . --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"helmet": "^3.18.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.6.0",
"rate-limiter-flexible": "^1.0.2",
"validator": "^11.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-prettier": "^3.1.0",
"husky": "^2.4.1",
"lint-staged": "^8.2.1",
"mocha": "^6.1.4",
"nodemon": "^1.19.1",
"prettier": "^1.18.2"
},
"engines": {
"node": ">=8.10.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint . --fix",
"git add"
]
}
}