-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "welcome",
"description": "Welcomes a DHIS2 user",
"homepage": ".",
"version": "0.1.0",
"private": true,
"developer": {
"name": "Terje Uglebakken",
"email": "terjeug@ifi.uio.no",
"url": "https://dhis2designlab.github.io/"
},
"license": "MIT",
"icons": {
"16": "favicon-16x16.png",
"32": "favicon-32x32.png",
"48": "favicon-48x48.png"
},
"manifest.webapp": {
"name": "Welcome",
"description": "Be welcomed",
"appType": "DASHBOARD_WIDGET",
"activities": {
"dhis": {
"href": "*"
}
}
},
"scripts": {
"start": "react-scripts start",
"prebuild": "rimraf build",
"build": "react-scripts build && d2-manifest package.json build/manifest.webapp",
"postbuild": "rimraf welcome.zip && cd build && bestzip ../welcome.zip *",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@dhis2/app-runtime": "1.3.0",
"@dhis2/ui-core": "^3.9.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"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"
}
}