forked from cgali/Home-Delivery-Chef
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 871 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 871 Bytes
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
{
"name": "home-delivery-chef-app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start-dev": "nodemon ./bin/www",
"seed-chef": "node ./seeds/seeds.js",
"seed-menu": "node ./seeds/seedsmenus.js",
"seed-client": "node ./seeds/seedsclients.js"
},
"dependencies": {
"bcrypt": "^4.0.1",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "~4.16.1",
"express-session": "^1.17.0",
"handlebars-extend-block": "^1.0.0",
"hbs": "^4.1.0",
"http-errors": "~1.6.3",
"mongoose": "^5.9.4",
"morgan": "~1.9.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
}
}