-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 771 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 771 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
{
"name": "CSC309",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"frontend": "npm start --prefix ../frontend",
"heroku-postbuild": "npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "TEAM 33",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-fileupload": "^1.1.6",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.11",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"validator": "^12.0.0"
},
"devDependencies": {
"concurrently": "^5.0.0",
"eslint": "^6.7.0",
"nodemon": "^1.19.4"
}
}