-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.07 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
{
"name": "event-visualizer-app",
"version": "33.1.1",
"description": "Event charts app",
"main": "index.html",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js src `git diff --cached --name-only | grep \\.js$`",
"validate": "npm ls --depth 0",
"prestart": "d2-manifest package.json manifest.webapp",
"start": "webpack-dev-server",
"build": "rm -rf build && webpack --config webpack.config.prod.js && cp ./index.html build && cp ./push-analytics.json build && cp ./jquery*.min.js build && cp -r i18n build && cp -r dhis2 build && cp -r extjs build && npm run manifest",
"manifest": "d2-manifest package.json build/manifest.webapp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhis2/event-charts-app.git"
},
"keywords": [
"DHIS 2",
"HISP",
"Pivot"
],
"author": "Jan Henrik Øverland",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dhis2/event-charts-app/issues"
},
"homepage": "https://github.com/dhis2/event-charts-app#readme",
"dependencies": {
"d2-analysis": "33.1.0-ev.3",
"d2-charts-api": "29.0.1",
"d2-utilizr": "0.2.13"
},
"devDependencies": {
"babel-core": "^6.3.13",
"babel-eslint": "5.0.0-beta6",
"babel-loader": "^6.2.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"css-loader": "0.18.0",
"d2-manifest": "1.0.0",
"eslint": "1.3.1",
"eslint-config-dhis2": "0.0.5",
"eslint-plugin-react": "3.3.1",
"img-loader": "^1.2.2",
"json-loader": "^0.5.7",
"sass-loader": "7",
"style-loader": "0.12.3",
"url-loader": "^0.5.7",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"manifest.webapp": {
"name": "DHIS2 event visualizer app",
"icons": {
"48": "icon.png"
},
"developer": {
"url": "",
"name": "DHIS2 visualization team"
},
"activities": {
"dhis": {
"href": "..",
"auth": "admin:district",
"devHref": "http://localhost:8080"
}
}
}
}