-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 3.05 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
{
"name": "tanzania-health-dashboard",
"version": "0.0.1",
"description": "Health Dashboard",
"license": "GPL-3.0",
"main": "server.js",
"scripts": {
"build": "npm run _clean-dist && webpack && npm run _copy-stuff && npm run _notify",
"_clean-dist": "gulp clean:dist",
"_copy-index": "gulp copy:index",
"_copy-static": "gulp copy:static",
"_copy-stuff": "npm run _copy-index && npm run _copy-static",
"lint": "npm run lint-scripts",
"lint-scripts": "eslint 'app/**/*.{es6,js,jsx}'",
"lint-styles": "gulp lint-styles",
"_slack_notify": "gulp slack-notify",
"_notify": "npm run _slack_notify",
"start": "node server.js",
"test": "npm run test-only",
"posttest": "npm run lint",
"test-only": "jest"
},
"jest": {
"scriptPreprocessor": "<rootDir>/jest-preprocessor.js",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/reflux",
"<rootDir>/node_modules/lodash",
"<rootDir>/app/scripts/utils/sane-store-mixin",
"<rootDir>/app/scripts/utils/functional",
"<rootDir>/app/scripts/stores/",
"<rootDir>/node_modules/results"
],
"testFileExtensions": [
"es6",
"js",
"jsx"
],
"moduleFileExtensions": [
"es6",
"js",
"jsx"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/WorldBank-Transport/waterdash.git"
},
"keywords": [
"tanzania",
"water",
"dashboard"
],
"bugs": {
"url": "https://github.com/WorldBank-Transport/waterdash/issues"
},
"homepage": "https://github.com/WorldBank-Transport/waterdash#readme",
"engines": {
"node": ">=3.0.0"
},
"devDependencies": {
"babel-core": "5.8.24",
"babel-es6-polyfill": "1.0.1 ",
"babel-eslint": "4.1.6",
"babel-jest": "5.3.0",
"babel-loader": "5.3.2",
"css-loader": "0.18.0",
"eslint": "1.10.3",
"eslint-plugin-react": "3.11.1",
"extract-text-webpack-plugin": "0.9.1",
"gulp": "3.9.0",
"gulp-clean": "0.3.1",
"gulp-exec": "2.1.2",
"gulp-gh-pages": "0.5.4",
"gulp-inject": "3.0.0",
"gulp-sass-lint": "1.1.1",
"jest-cli": "0.5.10",
"node-sass": "3.3.2",
"react-hot-loader": "1.3.0",
"sass-loader": "2.0.1",
"slack-notify": "0.1.4",
"style-loader": "0.12.4",
"webpack": "1.12.9",
"webpack-dev-server": "1.14.0"
},
"dependencies": {
"classnames": "2.1.3",
"es6-promise": "3.0.2",
"highcharts": "4.2.1",
"history": "1.12.5",
"intl": "1.0.1",
"isomorphic-fetch": "2.2.0",
"leaflet": "0.7.5",
"lodash": "3.10.1",
"object-assign": "4.0.1",
"react": "0.13.3",
"react-autocomplete": "0.1.4",
"react-font-awesome": "https://github.com/janmyler/react-font-awesome/tarball/261c1719581e9125a544f8b5b9efc2e27073d970",
"react-intl": "1.2.2 ",
"react-leaflet": "0.7.0",
"react-router": "1.0.0-rc1",
"react-slider": "0.5.1",
"reflux": "0.2.12",
"results": "0.9.0",
"topojson": "1.6.19",
"whatwg-fetch": "0.9.0",
"react-copy-to-clipboard": "3.0.2"
}
}