-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
122 lines (122 loc) · 4.49 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "d2-dataset-configuration",
"version": "2.6.4",
"description": "Dataset Configuration User Interface",
"main": "src/index.html",
"scripts": {
"coverage": "babel-node node_modules/.bin/isparta cover --root ./src --report text --report html --report lcov node_modules/mocha/bin/_mocha -- --reporter dot --require config/setup.js --recursive test",
"prebuild": "rm -rf build && mkdir build && d2-manifest package.json manifest.webapp",
"build": "webpack && cp -a includes build/ && cp -a src/i18n build/ && cp index.html build/ && cp icon.png build/ && cp node_modules/jquery/dist/jquery.min.js build/ && cp node_modules/babel-polyfill/dist/polyfill.min.js build/ && cp manifest.webapp build/ && rm -f dataset-configuration.zip && cd build && zip --quiet -r ../dataset-configuration.zip *",
"test": "mocha --reporter spec --compilers js:babel-core/register --require config/setup.js --recursive test",
"test-watch": "mocha --reporter spec --compilers js:babel-core/register --require config/setup.js --recursive test --watch",
"lint": "eslint --fix src",
"validate": "npm ls",
"prettify": "prettier \"{src,config}/**/*.{js,jsx,ts,tsx,json,css}\" --write",
"prestart": "d2-manifest package.json manifest.webapp",
"start": "webpack-dev-server"
},
"keywords": [
"DHIS2",
"App"
],
"author": {
"name": "EyeSeeTea Team",
"email": "[email protected]",
"url": "https://github.com/EyeSeeTea/dataset-configuration"
},
"license": "GPL-3.0",
"dependencies": {
"@material-ui/core": "^4.6.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/styles": "^4.6.0",
"bluebird": "^3.5.0",
"downshift": "^3.3.4",
"htmlencode": "^0.0.4",
"jquery": "^3.3.1",
"json-loader": "^0.5.4",
"nano-memoize": "^1.1.3",
"prop-types": "^15.7.1",
"raw-loader": "^0.5.1",
"react-router": "^3.2.5",
"react-scroll-to-component": "^1.0.2",
"rxjs-compat": "^6.5.3",
"susy": "^2.2.12",
"velocityjs": "^1.0.0"
},
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "9.x",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"classnames": "^2.2.5",
"css-loader": "^0.23.1",
"d2": "26.2.2",
"d2-manifest": "^1.0.0",
"d2-ui": "github:EyeSeeTea/d2-ui#dataset-configuration",
"d2-utilizr": "^0.2.9",
"d3-color": "1.0.2",
"eslint": "^5.12.1",
"eslint-config-prettier": "^3.6.0",
"eslint-config-react-app": "^3.0.8",
"eslint-plugin-flowtype": "2.x",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.0",
"eslint-plugin-react": "^7.12.4",
"http-proxy": "git+https://github.com/nicolayr/node-http-proxy.git",
"immutability-helper": "^2.1.2",
"isparta": "^4.0.0",
"jsdom": "^9.0.0",
"loglevel": "^1.4.0",
"material-ui": "^0.20.2",
"material-ui-scrollable-tabs": "^2.0.0",
"mocha": "^3.2.0",
"moment": "^2.18.1",
"node-sass": "^4.5.3",
"prettier": "^1.16.4",
"react": "16.12.0",
"react-dom": "^16.9.0",
"react-json-view": "^1.19.1",
"react-router-dom": "^5.0.1",
"react-steps": "^0.0.5",
"request": "^2.34",
"request-promise": "^4.2.2",
"rx": "^4.1.0",
"sass-loader": "^3.2.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1",
"webpack-visualizer-plugin": "^0.1.5"
},
"resolutions": {
"node-sass/**/fstream": "^1.0.12",
"node-sass/**/tar": "^2.2.2"
},
"pre-commit": [
"test",
"lint",
"validate"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EyeSeeTea/dataset-configuration.git"
},
"bugs": {
"url": "https://github.com/EyeSeeTea/dataset-configuration/issues"
},
"homepage": "https://github.com/EyeSeeTea/dataset-configuration",
"manifest.webapp": {
"name": "Dataset Configuration",
"icons": {
"48": "icon.png"
}
}
}