-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 766 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 766 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
{
"name": "foodshare",
"version": "1.0.0",
"description": "A food sharing platform built with MongoDB, Express, and Node.js",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"ejs": "^3.1.9",
"express": "^4.21.2",
"express-session": "^1.18.1",
"express-validator": "^7.0.1",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.8.6",
"path": "^0.12.7"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.3"
},
"engines": {
"node": ">=18.0.0"
}
}