-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 817 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 817 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
{
"name": "havo-backend",
"version": "3.0.0",
"private": true,
"scripts": {
"start": "export NODE_ENV=production && yarn run swagger-autogen && node ./bin/www",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "export NODE_ENV=development && nodemon ./bin/www --ignore '/swagger_output.json'",
"swagger-autogen": "node swagger.js"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"custom-id-new": "^1.2.1",
"debug": "~2.6.9",
"dotenv": "^10.0.0",
"express": "~4.16.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.3",
"morgan": "~1.9.1",
"nodemailer": "^6.7.1",
"otp-generator": "^3.0.0",
"swagger-autogen": "^2.17.2",
"swagger-ui-express": "^4.3.0"
}
}