-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.99 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
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
{
"name": "who-immunization-analysis-app",
"description": "Immunization data analysis app for DHIS2",
"version": "1.0.7",
"dependencies": {
"angular": "^1.7.9",
"angular-animate": "^1.7.9",
"angular-bootstrap-nav-tree": "^0.2.1",
"angular-route": "^1.7.9",
"angular-sanitize": "^1.7.9",
"angular-smart-table": "2.1.11",
"angular-ui-bootstrap": "2.5.6",
"blob": "0.0.4",
"bootstrap": "3.4.1",
"chart.js": "2.7.3",
"chartjs-plugin-annotation": "^0.5.7",
"chartjs-plugin-stacked100": "^0.4.6",
"d2": "^30",
"d2-ui": "^29.0.29",
"d2-utilizr": "^0.2.16",
"debug": "^4.1.1",
"file-saver": "^1.3.3",
"fontawesome": "^5.6.3",
"i18next": "^10.0.1",
"jquery": "^3.4.1",
"material-design-icons": "^3.0.1",
"moment": "^2.19.3",
"ng-i18next": "^1.0.5",
"proptypes": "^1.1.0",
"regression": "^2.0.0",
"rxjs": "^5.5.12",
"typeface-roboto": "^0.0.54",
"ui-select": "^0.19.8"
},
"devDependencies": {
"@dhis2/cli-style": "github:dhis2/cli-style",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"colors": "^1.2.1",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "^0.28.7",
"d2-manifest": "^1.0.0",
"eslint": "^4.11.0",
"expose-loader": "^0.7.5",
"file-loader": "^1.1.5",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"i18next-conv": "^4.1.0",
"material-ui": "^0.20.2",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"recursive-readdir": "^2.2.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2",
"webpack": "^4.41.6",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"main": "./src/app.js",
"pre-commit": [
"refresh-translations-template"
],
"scripts": {
"build": "npm run convert-po && webpack -p --progress",
"convert-po": "node po-converter.js",
"deploy": "npm run build && mvn clean deploy",
"extract-pot": "node pot-extractor.js",
"lint": "eslint src",
"manifest": "d2-manifest package.json build/manifest.webapp",
"postbuild": "cp -r i18n build/ && npm run manifest",
"prebuild": "rm -rf build && npm run lint",
"refresh-translations-template": "npm run extract-pot -- -o translations.pot && git add ./i18n/translations.pot",
"start": "d2-manifest package.json manifest.webapp && npm run convert-po && webpack-dev-server",
"test": "echo \"Error: no test specified\" && exit 0",
"validate": "npm ls --depth 0",
"zip": "rm -rf compiled && npm run build && mkdir compiled && cd build && zip -r ../compiled/$npm_package_name.zip *"
},
"manifest.webapp": {
"developer": {
"company": "UiO",
"email": "olavpo@ifi.uio.no",
"name": "HISP UiO",
"url": "https://github.com/dhis2/who-immunization-analysis-app"
},
"icons": {
"48": "img/icons/app_logo_48x48.png",
"96": "img/icons/app_logo_96x96.png"
},
"name": "WHO Immunization analysis"
}
}