-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
97 lines (97 loc) · 2.88 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
{
"name": "DATIM_User_App_2",
"version": "29.0.1",
"description": "A DHIS2 User Management App for PEPFAR",
"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": "rm -rf build && webpack && npm run manifest",
"postbuild": "cp -rv index.html icon*.png i18n node_modules/babel-polyfill/dist/polyfill.min.js manifest.webapp build/",
"test": "jest --coverage",
"test-watch": "jest --watchAll",
"lint": "eslint ./src",
"validate": "npm ls",
"prestart": "d2-manifest package.json manifest.webapp",
"manifest": "d2-manifest package.json build/manifest.webapp",
"start": "webpack-dev-server",
"dist": "npm run build && npm run postbuild && cd build && zip -r user-management.zip * && cd .."
},
"keywords": [
"DHIS2",
"App",
"BAO Systems"
],
"author": "Gregory Wilson <[email protected]>",
"license": "PEPFAR",
"dependencies": {
"lodash": "^4.17.10",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.6.1",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^6.0.2",
"babel-jest": "^22.4.4",
"babel-loader": "^6.0.0",
"babel-polyfill": "^6.9.1",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.0.0",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"d2": "^29.1.5",
"d2-manifest": "^1.0.0",
"d2-ui": "~25.0",
"enzyme": "^3.3.0",
"eslint": "^2.13.1",
"eslint-config-dhis2": "^2.0.1",
"eslint-plugin-react": "^7.9.1",
"exports-loader": "0.6.3",
"http-proxy": "git+https://github.com/nicolayr/node-http-proxy.git",
"isparta": "^4.0.0",
"jest": "^22.4.4",
"jsdom": "^9.0.0",
"loglevel": "^1.4.1",
"material-ui": "^0.14.4",
"node-sass": "^3.8.0",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"react-tap-event-plugin": "^0.2.2",
"redux-devtools-extension": "^2.13.2",
"regenerator-runtime": "^0.11.1",
"sass-loader": "^4.0.0",
"sinon": "^1.17.3",
"style-loader": "^0.13.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"pre-commit": [
"test",
"lint"
],
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": ""
},
"homepage": "",
"manifest.webapp": {
"name": "DATIM User Manager 2",
"icons": {
"16": "icon-16.png",
"48": "icon.png",
"128": "icon-128.png"
},
"developer": {
"url": "",
"name": "Gregory Wilson <[email protected]>"
}
}
}