forked from joshhedstrom/healthTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.21 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
39
40
41
42
43
44
45
46
{
"name": "healthtracker",
"version": "1.0.0",
"description": "A Fitness and Nutrition Tracking App",
"engines": {
"node": "8.11.1"
},
"main": "server.js",
"scripts": {
"client": "node scripts/start-client.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "cd client && npm run build",
"heroku-postbuild": "cd client && npm install && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshhedstrom/healthTracker.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/joshhedstrom/healthTracker/issues"
},
"homepage": "https://github.com/joshhedstrom/healthTracker#readme",
"dependencies": {
"axios": "^0.18.1",
"bcrypt": "^5.0.0",
"bcrypt-nodejs": "0.0.3",
"bluebird": "^3.5.2",
"concurrently": "^3.6.1",
"express": "^4.16.4",
"jsonwebtoken": "^8.3.0",
"moment": "^2.22.2",
"mongoose": "^5.3.8",
"morgan": "^1.9.1",
"nodemon": "^1.18.5",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0"
},
"root": "build/",
"clean_urls": false,
"routes": {
"/**": "index.html"
}
}