-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 937 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
{
"name": "playvine",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start-dev": "nodemon -e js,json,hbs ./bin/www",
"user-seed": "node ./bin/userSeed",
"session-seed": "node ./bin/sessionSeed"
},
"engines": {
"node": "v11.1.0",
"npm": "6.4.1"
},
"dependencies": {
"bcrypt": "^3.0.2",
"connect-flash": "^0.1.1",
"connect-mongo": "^2.0.2",
"cookie-parser": "~1.4.3",
"debug": "~2.6.9",
"dotenv": "^6.1.0",
"express": "~4.16.0",
"express-session": "^1.15.6",
"hbs": "~4.0.1",
"http-errors": "~1.6.2",
"moment": "^2.22.2",
"mongoose": "^5.3.13",
"morgan": "~1.9.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0"
}
}