-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.14 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.14 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "function-updater",
"version": "0.1.0",
"private": true,
"homepage": "./",
"dependencies": {
"@amcharts/amcharts4": "^4.6.9",
"@antv/data-set": "^0.10.2",
"@dhis2/analytics": "^2.6.11",
"@dhis2/d2-i18n": "^1.0.6",
"@dhis2/d2-ui-app": "^2.0.0",
"@dhis2/d2-ui-core": "^6.1.1",
"@dhis2/d2-ui-header-bar": "^6.2.1",
"@dhis2/d2-ui-org-unit-dialog": "^6.1.1",
"@dhis2/d2-ui-period-selector-dialog": "^6.3.0",
"@dhis2/d2-ui-table": "^6.1.1",
"@dhis2/ui": "^1.0.0-beta.15",
"@dhis2/ui-core": "^3.6.3",
"@material-ui/core": "^4.2.1",
"@material-ui/icons": "^4.2.1",
"@nivo/geo": "^0.59.2",
"@reach/router": "^1.2.1",
"antd": "^3.25.1",
"axios": "^0.19.0",
"core-js": "2",
"d2": "^31.8.1",
"d3-color": "^1.2.8",
"highcharts": "^7.2.0",
"highcharts-react-official": "^2.2.2",
"leaflet": "^1.6.0",
"lodash": "^4.17.14",
"mapbox-gl": "^1.4.1",
"material-design-icons": "^3.0.1",
"mobx": "^5.13.0",
"mobx-react": "^6.1.1",
"mobx-router": "^0.0.20",
"prop-types": "latest",
"reach-router-hash-history": "^0.0.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-grid-layout": "^0.16.6",
"react-leaflet": "^2.6.1",
"react-leaflet-control": "^2.1.2",
"react-mapbox-gl": "^4.6.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.0.1",
"react-vis": "^1.11.7",
"shortid": "^2.2.15",
"socket.io-client": "^2.3.0",
"tailwindcss": "^1.2.0",
"viser-react": "^2.4.6"
},
"scripts": {
"tailwind:css": "tailwindcss build src/tailwind.css -c tailwind.config.js -o src/styles.css",
"prestart": "npm run extract-pot && npm run localize && npm run manifest",
"start": "npm run tailwind:css && react-app-rewired start",
"prebuild": "rm -rf build && mkdir build && npm run manifest && npm run localize",
"build": "react-app-rewired build && cd build && zip -r -D cc.zip .",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"localize": "npm run extract-pot && d2-i18n-generate -n cc -p ./i18n/ -o ./src/locales/",
"manifest": "d2-manifest package.json ./public/manifest.webapp --manifest.description='Command Centre'",
"extract-pot": "d2-i18n-extract -p src/ -o i18n/"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.4.4",
"@dhis2/d2-i18n-extract": "^1.0.8",
"@dhis2/d2-i18n-generate": "^1.1.1",
"babel-plugin-import": "^1.12.2",
"customize-cra": "^0.8.0",
"d2-manifest": "^1.0.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"react-app-rewired": "^2.1.3"
},
"manifest.webapp": {
"name": "CC",
"icons": {
"48": "favicon.png"
},
"developer": {
"url": "",
"name": "DHIS2"
},
"dhis2": {
"apiVersion": "29"
},
"activities": {
"dhis": {
"href": "../../"
}
}
}
}