-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 877 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
{
"name": "revn",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"lint": "./node_modules/.bin/eslint .",
"build-client": "cd client && npm run build && cd ..",
"start-client": "cd client && npm run start && cd .."
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"node": true
},
"rules": {
"no-console": "off",
"strict": "off",
"arrow-body-style": "off",
"object-shorthand": "off"
}
},
"dependencies": {
"bcrypt": "^3.0.2",
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^6.1.0",
"express": "~4.16.0",
"http-errors": "~1.6.2",
"morgan": "~1.9.0",
"mysql": "^2.16.0",
"sequelize": "^4.41.0"
},
"devDependencies": {
"@types/express": "^4.16.0",
"nodemon": "^1.18.5"
}
}