-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.19 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.19 KB
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": "backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": " NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend",
"test": "jest --no-cache --detectOpenHandles --runInBand --forceExit"
},
"author": "COP4710 Group 5",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"generate-password": "^1.7.0",
"heroku": "^7.65.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.10.0",
"mongoose": "^6.7.0",
"nodemailer": "^6.8.0",
"twilio": "^3.83.0"
},
"devDependencies": {
"concurrently": "^7.5.0",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"supertest": "^6.3.2"
}
}