-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.38 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.38 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
{
"name": "function-updater",
"version": "1.0.1",
"private": true,
"homepage": "./",
"dependencies": {
"@dhis2/d2-i18n": "^1.0.5",
"@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.1.1",
"@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",
"antd": "^3.20.3",
"d2": "^31.8.1",
"d3-color": "^1.2.8",
"lodash": "^4.17.14",
"material-design-icons": "^3.0.1",
"mobx": "^5.13.0",
"mobx-react": "^6.1.1",
"prop-types": "latest",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "3.0.1",
"react-vis": "^1.11.7"
},
"scripts": {
"prestart": "npm run extract-pot && npm run localize && npm run manifest",
"start": "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 function-updater.zip .",
"test": "react-app-rewired test",
"eject": "react-app-rewired eject",
"localize": "npm run extract-pot && d2-i18n-generate -n function-updater -p ./i18n/ -o ./src/locales/",
"manifest": "d2-manifest package.json ./public/manifest.webapp --manifest.description='Function Updater'",
"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.0",
"customize-cra": "^0.4.1",
"d2-manifest": "^1.0.0",
"less": "^3.9.0",
"less-loader": "^5.0.0",
"react-app-rewired": "^2.1.3"
},
"manifest.webapp": {
"name": "Function updater",
"icons": {
"48": "favicon.png"
},
"developer": {
"url": "",
"name": "DHIS2"
},
"dhis2": {
"apiVersion": "29"
},
"activities": {
"dhis": {
"href": "../../"
}
}
}
}