forked from dhis2/settings-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.75 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
94
95
96
97
98
99
100
101
102
103
104
{
"name": "settings-app",
"version": "31.0.0",
"description": "Settings management application for DHIS2",
"main": "index.html",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --mode production",
"lint": "eslint .",
"manifest": "d2-manifest package.json build/manifest.webapp",
"postbuild": "cp -r ./package.json *.png i18n build/ && npm run manifest",
"prebuild": "rm -rf build",
"start:manifest": "d2-manifest package.json manifest.webapp",
"start:dev": "webpack-dev-server --mode development",
"start": "npm run start:manifest && npm run start:dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dhis2/settings-app.git"
},
"keywords": [
"DHIS2",
"HISP",
"Settings"
],
"greenkeeper": {
"ignore": [
"@dhis2/d2-ui-header-bar",
"d2",
"rxjs"
]
},
"author": "Nicolay Ramm <[email protected]> (https://www.dhis2.org)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dhis2/settings-app/issues"
},
"homepage": "https://github.com/dhis2/settings-app#readme",
"dependencies": {
"@babel/polyfill": "^7.2.5",
"@dhis2/app-runtime": "^2.0.4",
"@dhis2/ui-widgets": "^5.0.1",
"classnames": "^2.2.5",
"d2": "^30.0.0",
"d2-manifest": "^1.0.0",
"d2-ui": "^29.0.5",
"d2-utilizr": "^0.2.15",
"d3-color": "^1.0.3",
"fixed-data-table": "^0.6.4",
"history": "^4.7.2",
"loglevel": "^1.4.1",
"material-ui": "^0.20.0",
"moment": "^2.18.1",
"prop-types": "^15.6.2",
"react": "16.8.3",
"react-dom": "^16.7.0",
"rxjs": "^5.5.7",
"styled-jsx": "^3.3.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "7.3.4",
"@dhis2/cli-style": "^2.2.2",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.5",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"eslint-config-dhis2": "^3.0.3",
"eslint-config-prettier": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"node-pre-gyp": "^0.12.0",
"node-sass": "4.14.1",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"susy": "^3.0.5",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"husky": {
"hooks": {
"commit-msg": "d2-style commit check",
"pre-commit": "d2-style js apply"
}
},
"manifest.webapp": {
"name": "DHIS 2 System Settings Management",
"icons": {
"48": "icon.png"
},
"dhis2": {
"apiVersion": "33"
},
"activities": {
"dhis": {
"href": ".."
}
}
}
}