-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 944 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 944 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
35
36
37
38
{
"name": "keepcoding-04-node-backend",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "cross-env PORT=3000 NODEAPP_ENV=development nodemon ./bin/www",
"start": "cross-env NODEAPP_ENV=production node ./bin/www",
"initDB": "node initDB.js"
},
"author": "Pablo Abaroa-Schilling",
"dependencies": {
"bcrypt": "^5.1.1",
"chance": "^1.1.12",
"connect-mongo": "^5.1.0",
"cookie-parser": "~1.4.4",
"cross-env": "^7.0.3",
"debug": "~2.6.9",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"http-errors": "~1.6.3",
"mongoose": "^8.12.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.2"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"nodemon": "^3.1.9"
},
"engines": {
"node": ">=22.15.1",
"npm": ">=11.4.0"
}
}