-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.02 KB
/
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
35
36
37
38
39
{
"name": "students_server",
"version": "1.0.0",
"description": "",
"engines": {
"npm": ">=7.0.0",
"node": ">=16.0.0"
},
"main": "server.js",
"scripts": {
"setup": "npm install && cd frontend && npm install && cd ..",
"dev": "npx nodemon server.js",
"build-run": "cd frontend && npm run build && cd .. && node server.js",
"start": "node server.js",
"heroku-postbuild": "cd frontend && npm install && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"mongod": "mongod --dbpath db"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.29.0",
"connect-mongo": "^4.4.0",
"connect-multiparty": "^2.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.1",
"prettier": "^2.6.2",
"validator": "^13.5.2"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}