-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 746 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 746 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
{
"name": "inventory-app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"serverstart": "DEBUG=inventory-app:* npm run devstart"
},
"engines": {
"node": ">=18.16.0"
},
"dependencies": {
"compression": "^1.7.4",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.3.1",
"express-validator": "^7.1.0",
"helmet": "^7.1.0",
"http-errors": "~1.6.3",
"mongoose": "^8.4.1",
"morgan": "~1.9.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.5.7",
"nodemon": "^3.1.3"
}
}