-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 999 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
33
{
"name": "child-labor",
"version": "1.0.0",
"description": "Allowance app",
"main": "index.js",
"scripts": {
"server:debug": "nodemon --inspect app.js",
"server": "nodemon app.js",
"start": "node app.js",
"frontend-install": "npm install --prefix frontend",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server:debug\" \"npm run frontend\"",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "Grant Paulson, Shawn Scott, Vu Tran, Sean Kennealy",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"chart.js": "^2.8.0",
"concurrently": "^4.1.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.5.7",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"typed.js": "^2.0.10",
"validator": "^10.11.0"
},
"devDependencies": {
"nodemon": "^1.19.0"
}
}