-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 872 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 872 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/app.js",
"start": "node src/app.js",
"seed": "node src/seed/seedData.js",
"seed:reset": "node src/seed/resetData.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"cors": "^2.8.5",
"dotenv": "^17.2.1",
"express": "^5.1.0",
"express-session": "^1.18.2",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.18.0",
"mongoose": "^8.18.0",
"multer": "^2.0.2",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"serverless-http": "^3.2.0",
"streamifier": "^0.1.1"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}