-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
40 lines (40 loc) · 974 Bytes
/
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
{
"name": "dogecodes-chat-server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "forever index.js",
"start:dev": "forever --watch index.js",
"lint": "eslint **/*.js",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --write **/*.{js,json,md}",
"precommit": "lint-staged"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"forever": "^0.15.3",
"jsonwebtoken": "^8.1.1",
"mongoose": "^4.13.10",
"socket.io": "^2.0.4"
},
"devDependencies": {
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^3.0.0",
"husky": "^0.14.3",
"lint-staged": "^6.1.0",
"prettier": "^1.14.3"
},
"lint-staged": {
"*.js": [
"npm run lint:fix",
"npm run format",
"git add"
]
}
}