-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 841 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 841 Bytes
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
{
"name": "boilermake-vii-web",
"version": "0.0.1",
"private": true,
"scripts": {
"client-install": "npm install --prefix vendor-client",
"start": "node ./bin/www",
"server": "nodemon ./bin/www",
"client": "npm start --prefix vendor-client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"heroku-postbuild": "cd vendor-client && npm install && npm run build"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"concurrently": "^5.0.2",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"http-errors": "~1.6.3",
"is-empty": "^1.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.8.9",
"morgan": "~1.9.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"pug": "2.0.0-beta11",
"validator": "^12.2.0"
}
}