-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 KB
/
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
35
36
37
38
39
40
{
"name": "node-http-server",
"version": "1.0.0",
"description": "Node.js example server starter project",
"main": "src/index.js",
"scripts": {
"start": "node server.js",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"client": "cd client && npm start",
"dev": "concurrently \"node server.js\" \"npm run client\"",
"heroku-postbuild": "npm run install-client and npm run build"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "1.19.0",
"cloudinary": "^1.22.0",
"config": "3.3.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"crypto": "^1.0.1",
"dotenv": "^8.2.0",
"express": "4.17.1",
"express-validator": "^6.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "5.9.25",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.10",
"nodemailer-sendgrid-transport": "^0.2.0",
"query-string": "^6.13.1",
"querystring": "^0.2.0",
"shortid": "^2.2.15",
"uuid": "^8.3.0"
},
"devDependencies": {
"nodemon": "1.18.4"
},
"keywords": []
}