-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 784 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 784 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
{
"name": "bodywatcher",
"version": "1.0.0",
"description": "An app for tracking you body weight and fat",
"main": "index.js",
"scripts": {
"start": "node index.js",
"server": "nodemon index.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"client_install": "npm install --prefix client",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"author": "Michelle Fuchs <mail@michelle-fuchs.com>",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"concurrently": "^4.1.1",
"cors": "^2.8.5",
"express": "^4.16.4",
"mongoose": "^5.7.5"
},
"devDependencies": {
"nodemon": "^1.18.10"
}
}