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 5
/
Copy pathpackage.json
85 lines (85 loc) · 2.34 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
{
"name": "react-dash-boilerplate",
"version": "0.6.0",
"description": "Boilerplate for starting a react-dash project.",
"main": "index.js",
"scripts": {
"start": "node server.js",
"setup": "./scripts/setup.sh",
"build_dkan": "./scripts/build_dkan.sh",
"build_standalone": "./scripts/build_standalone.sh",
"dev": "./scripts/dev_standalone.sh",
"test": "./node_modules/karma/bin/karma start --single-run --no-auto-watch karma.config.js",
"test_watch": "./node_modules/karma/bin/karma start --auto-watch --no-single-run karma.config.js",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/NuCivic/react-dash"
},
"keywords": [
"react",
"es6",
"babel",
"react-dash",
"data",
"visualization",
"dashboard",
"d3",
"nvd3",
"chart",
"graph",
"map",
"choropleth"
],
"author": "Paul Walker",
"license": "MIT",
"bugs": {
"url": "https://github.com/NuCivic/react-dash"
},
"dependencies": {
"blacklist": "^1.1.4",
"bootstrap": "^3.3.7",
"create-react-class": "^15.5.2",
"fixed-data-table": "^0.6.3",
"lodash": "^4.16.4",
"react": "*",
"react-create-class": "^1.0.0",
"react-dash": "0.6.11",
"react-dom": "*",
"react-router": "^2.8.1",
"react-select": "^1.0.0-rc.2"
},
"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-polyfill": "^6.7.2",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.6.1",
"css-loader": "^0.23.1",
"eslint-plugin-react": "^3.6.2",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"jasmine-core": "^2.3.4",
"json-loader": "^0.5.4",
"json-server": "^0.8.18",
"karma": "^0.13.3",
"karma-coverage": "^0.4.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^0.2.0",
"karma-spec-reporter": "0.0.20",
"karma-webpack": "^1.7.0",
"node-sass": "^3.4.2",
"phantomjs": "^2.1.3",
"phantomjs-polyfill": "0.0.2",
"react-hot-loader": "^1.3.0",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.0",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.12.1"
}
}