-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "healthtracker",
"version": "1.0.0",
"private": true,
"main": "server.js",
"dependencies": {
"axios": "^0.18.0",
"body-parser": "^1.18.2",
"chartist": "^0.11.0",
"connect-mongo": "^2.0.1",
"express": "^4.15.4",
"express-session": "^1.15.6",
"fusioncharts": "^3.12.2",
"mongoose": "^5.0.15",
"morgan": "^1.9.0",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"react-chartist": "^0.13.1",
"react-fusioncharts": "^1.0.5",
"react-router-dom": "^4.2.2",
"yarn": "^1.6.0"
},
"scripts": {
"server": "node server.js",
"client": "node scripts/start-client.js",
"start": "concurrently \"nodemon server.js\" \"npm run client\"",
"build": "node scripts/build.js",
"seed": "node scripts/seedDB.js",
"test": "echo \"Error: no test specified\" && exit 1",
"installDeps": "yarn && cd client && yarn",
"prepare": "cd client && yarn install && yarn build"
},
"devDependencies": {
"concurrently": "^3.5.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"nodemon": "^1.11.0"
},
"engines": {
"node": "8.11.3"
}
}