-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.18 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
39
40
41
42
43
44
45
{
"name": "propview_backend",
"version": "1.0.0",
"description": "Backend for PropView",
"main": "server.js",
"scripts": {
"dev": "NODE_ENV=production nodemon server.js",
"prod-start": "pm2 start server.js",
"prod-restart": "NODE_ENV=production pm2 restart server.js",
"prod-stop": "NODE_ENV=production pm2 stop server.js"
},
"author": "Sayan Nath, Sambit",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.927.0",
"bcrypt": "^5.0.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.6",
"excel4node": "^1.7.2",
"express": "^4.17.1",
"express-jwt": "^6.0.0",
"express-validator": "^6.10.0",
"fast-csv": "^4.3.6",
"firebase-admin": "^9.7.0",
"form-data": "^4.0.0",
"googleapis": "^100.0.0",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.2",
"multer-s3": "^2.9.0",
"mysql": "^2.18.1",
"node-cron": "^3.0.0",
"node-mysql-nesting": "^0.0.3",
"nodemailer": "^6.7.3",
"nodemailer-smtp-transport": "^2.7.4",
"uuid": "^3.3.2",
"winston": "^3.3.3"
},
"devDependencies": {
"morgan": "^1.10.0",
"nodemon": "^2.0.7"
}
}