-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 828 Bytes
/
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
{
"name": "server",
"version": "1.0.0",
"description": "",
"engines": {
"node": "14.x",
"npm": "*"
},
"main": "app.js",
"scripts": {
"start": "node app.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.2.2",
"bcrypt": "^4.0.1",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.22.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-fileupload": "^1.1.7-alpha.3",
"form-data": "^3.0.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.27.0",
"mongoose": "^5.9.15",
"multer": "^1.4.2",
"nodemailer": "^6.4.11",
"nodemailer-sendgrid-transport": "^0.2.0",
"redis": "^3.0.2",
"socket.io": "^2.3.0"
}
}