-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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": "ogunit-code",
"description": "DHIS2 app for changing organisation unit codes.",
"homepage": ".",
"version": "0.0.1",
"private": true,
"developer": {
"name": "simon Injiri",
"email": "[email protected]",
"url": "https://github.com/injiri/"
},
"license": "MIT",
"icons": {
"16": "favicon-16x16.png",
"32": "favicon-32x32.png",
"48": "favicon-48x48.png"
},
"manifest.webapp": {
"name": "Org Unit Admin",
"description": "Simplified Managing of organisation unit codes .",
"appType": "APP",
"activities": {
"dhis": {
"href": "*"
}
}
},
"scripts": {
"start": "react-scripts start",
"prebuild": "rimraf build",
"build": "react-scripts build && d2-manifest package.json build/manifest.webapp",
"postbuild": "rimraf ogunits-admin.zip && cd build && bestzip ../ogunits-admin.zip *",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@dhis2/app-runtime": "1.3.0",
"@dhis2/ui-core": "^3.9.0",
"@dhis2/ui-widgets": "1.0.8",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"styled-components": "^4.3.2",
"typeface-roboto": "^0.0.54"
},
"devDependencies": {
"@dhis2/cli-style": "^4.1.1",
"bestzip": "^2.1.4",
"d2-manifest": "^1.0.0",
"prop-types": "^15.7.2",
"react-scripts": "^3.1.1",
"rimraf": "^2.6.3"
},
"peerDependencies": {
"styled-jsx": "^3.4.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}