-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·37 lines (37 loc) · 955 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
35
36
37
{
"name": "react-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"client-install": "npm install --prefix client",
"client": "npm start --prefix client",
"server": "node app.js",
"start": "npm run dev",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.18.3",
"concurrently": "^4.1.0",
"cookie-parser": "~1.4.4",
"debug": "~4.1.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"http-errors": "~1.7.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.2",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"pug": "~2.0.3"
},
"devDependencies": {
"nodemon": "^1.18.11"
},
"engines": {
"node": "11.12.0",
"npm": "6.9.0"
}
}