-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·68 lines (68 loc) · 2.06 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "gcd-dashboard",
"author": "HealthIT",
"email": "info@healthit.uonbi.ac.ke",
"licence": "GPT",
"version": "0.1.0",
"private": false,
"scripts": {
"install-server": "cd server && npm install",
"start-server": "cd server && npm run dev",
"install-all": "concurrently \"npm install\" \"cd server && npm install\"",
"start-all": "concurrently \"PORT=8888 npm start\" \"npm run start-server\"",
"start": "PORT=8888 react-scripts start",
"start-prod": "env REACT_APP_ENV=production PORT=3000 react-scripts start",
"build": "env REACT_APP_ENV=production react-scripts build",
"build-dev": "env REACT_APP_ENV=dev react-scripts build && mv build buildev",
"serve-dev": "cd buildev && live-server --port=8888",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"proxy": "http://localhost:3000",
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"dependencies": {
"@compeon/monthpicker": "^0.4.13",
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"@material-ui/lab": "^4.0.0-alpha.41",
"@material-ui/styles": "^4.2.1",
"clsx": "^1.0.4",
"dotenv": "^8.2.0",
"hcd-config": "file:config",
"highcharts": "^9.0.0",
"highcharts-react-official": "^2.2.0",
"history": "^4.9.0",
"leaflet": "^1.7.1",
"moment": "^2.24.0",
"mui-datatables": "^2.14.0",
"prop-types": "^15.7.2",
"query-string": "^6.11.0",
"react": "^16.8.6",
"react-chartjs-2": "^2.7.6",
"react-dom": "^16.8.6",
"react-highcharts": "^6.0.0",
"react-leaflet": "^3.1.0",
"react-perfect-scrollbar": "^1.5.3",
"react-router-dom": "^5.0.1",
"react-scripts": "^3.0.1",
"react-year-month-picker": "^1.0.1",
"recompose": "^0.17.0",
"sass-loader": "^12.4.0",
"styled-components": "^5.3.3",
"underscore": "^1.12.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"concurrently": "^5.1.0",
"prettier": "^1.17.1",
"sass": "^1.50.0",
"typescript": "^3.5.1"
}
}