-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (40 loc) · 1.1 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
41
{
"name": "whatsapp-clone",
"version": "1.0.0",
"engines": {
"node": "12.13.0",
"npm": "6.12.0"
},
"scripts": {
"client": "cd client && npm start",
"server": "nodemon --exec babel-node server.js",
"build": "cd client && npm run build",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"start": "babel-node server.js",
"heroku-prebuild": "rm -rf node_modules",
"heroku-postbuild": "cd client && npm install && npm install --only=dev --no-shrinkwrap && npm run build"
},
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"compression": "1.7.4",
"cors": "2.8.5",
"express": "^4.16.4",
"express-validator": "^6.6.0",
"helmet": "^3.22.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.14",
"multer": "^1.4.2",
"nodemon": "^2.0.4",
"socket.io": "^2.3.0",
"stripe": "6.28.0",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.9.6",
"dotenv": "^7.0.0"
},
"devDependencies": {
"concurrently": "^4.0.1"
}
}