-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.05 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
{
"name": "budget2budget",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "11.0.0",
"yarn": "1.10.1"
},
"scripts": {
"start": "node server",
"server": "nodemon server.js",
"client": "npm run start --prefix client",
"dev": "concurrently --kill-others-on-fail \"npm run server\" \"npm run client\"",
"test": "echo \"Error: no test specified\" && exit 1",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client",
"nothing": "echo \"nothing\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"concurrently": "^3.6.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.3.0",
"mongoose": "^5.7.5",
"mongoose-beautiful-unique-validation": "^7.1.1",
"mongoose-unique-validator": "^2.0.1",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"query-string": "5",
"validator": "^10.4.0"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}