This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
99 lines (99 loc) · 3.23 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
{
"name": "react-dash",
"version": "0.7.2",
"description": "Another react dashboard component",
"main": "./dist/react-dashboard.min.js",
"style": "./dist/react-dashboard.min.css",
"scripts": {
"start": "bash scripts/start.sh",
"jsx-example": "REACT_DASH_EX=jsx_static bash scripts/start.sh",
"js-example": "REACT_DASH_EX=js_static bash scripts/start.sh",
"build": "webpack --config webpack.config.production.js",
"build-demo": "scripts/build-demo.sh",
"build-server": "webpack --config webpack.config.react-dash-server.js",
"test": "bash scripts/runtests.sh",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "https://github.com/Nucivic/react-dashboard.git"
},
"keywords": [
"react",
"reactjs",
"charts",
"dashboard",
"maps",
"visualizations",
"d3"
],
"author": [
"Mariano Carballal <[email protected]> (http://github.com/topicus)",
"Paul Walker <[email protected]> (http://github.com/[email protected])"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Nucivic/react-dashboard/issues"
},
"homepage": "https://github.com/NuCivic/react-dashboard",
"devDependencies": {
"babel-core": "^6.7.2",
"babel-eslint": "^4.1.3",
"babel-loader": "^6.2.4",
"babel-plugin-transform-class-properties": "^6.6.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"colorbrewer": "^1.0.0",
"css-loader": "^0.23.1",
"d3-time-format": "^0.3.1",
"datatables.net-responsive-bs": "^2.2.0",
"eslint-plugin-react": "^3.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jasmine-core": "^2.3.4",
"jquery": "^3.2.1",
"json-loader": "^0.5.4",
"karma": "^0.13.3",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"node-sass": "^3.7.0",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.12.1"
},
"dependencies": {
"classnames": "^2.2.3",
"csv-es6-data-backend": "git+https://github.com/NuCivic/csv-es6-data-backend.git",
"d3": "^3.5.16",
"dkan-es6-data-backend": "git+https://github.com/NuCivic/dkan-es6-data-backend.git",
"fetch-polyfill": "^0.8.2",
"fixed-data-table": "^0.6.4",
"fixed-data-table-2": "^0.7.15",
"flux": "^2.1.1",
"geojson": "^0.3.0",
"lodash": "^4.6.1",
"react": "15.6.2",
"react-collapsible": "^1.4.0",
"react-dom": "15.6.2",
"react-input-autosize": "1.1.0",
"react-nvd3": "git+https://github.com/NuCivic/react-nvd3.git",
"react-responsive-accordion": "git+https://github.com/NuCivic/react-responsive-accordion#master",
"react-router": "^2.7.0",
"react-select": "git+https://github.com/JedWatson/react-select.git#v1.0.0-rc.1",
"topojson": "^1.6.24"
},
"peerDependencies": {
"react": ">=0.14.0",
"react-dom": ">=0.14.0"
}
}