-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 868 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
{
"name": "inventory-mgt-app-v1",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"start": "node ./bin/www",
"devStart": "nodemon ./bin/www",
"serverStart": "cross-env DEBUG=inventory-mgt-app-v1:* & npm run devStart"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"connect-flash": "^0.1.1",
"cookie-parser": "~1.4.6",
"debug": "~4.3.5",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-ejs-layouts": "^2.5.1",
"express-session": "^1.18.0",
"express-validator": "^7.1.0",
"http-errors": "~2.0.0",
"mongoose": "^8.4.4",
"morgan": "~1.10.0",
"multer": "^1.4.5-lts.1",
"passport": "^0.7.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3"
}
}