forked from react-d3/react-d3-core
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 1.96 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
{
"name": "react-d3-core",
"version": "1.3.9",
"description": "react-d3 chart core component",
"main": "./lib/index.js",
"scripts": {
"test": "karma start",
"build": "rm -rf ./lib && BABEL_ENV=production ./node_modules/.bin/babel ./src --out-dir ./lib",
"prod": "BABEL_ENV=production NODE_ENV=0 webpack --config webpack.prod.config.js && BABEL_ENV=production NODE_ENV=1 webpack --config webpack.prod.config.js"
},
"author": "ElixirDoc team",
"license": "Apache 2.0",
"devDependencies": {
"babel-cli": "^6.6.4",
"babel-core": "^6.5.2",
"babel-eslint": "^3.1.9",
"babel-loader": "^6.2.3",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-react-transform": "^2.0.0",
"babel-plugin-transform-react-remove-prop-types": "^0.2.2",
"babel-plugin-transform-runtime": "^6.5.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "1.0.1",
"babel-preset-stage-0": "^6.5.0",
"dsv-loader": "^1.0.0",
"expect": "^1.13.3",
"express": "^4.13.4",
"extract-text-webpack-plugin": "^1.0.1",
"json-loader": "^0.5.4",
"jsx-loader": "^0.13.2",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.1",
"karma-mocha": "^0.2.0",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.2.5",
"react-addons-test-utils": "^0.14.0",
"react-bootstrap": "^0.28.3",
"react-hot-loader": "^1.3.0",
"react-router": "^2.0.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-middleware": "^1.5.1",
"webpack-dev-server": "^1.11.0",
"webpack-hot-middleware": "^2.9.1"
},
"peerDependencies": {
"react": "^0.14.7",
"react-dom": "^0.14.7"
},
"dependencies": {
"d3-array": "^0.7.1",
"d3-axis": "^0.3.0",
"d3-scale": "^0.6.4",
"d3-selection": "^0.7.0",
"prop-types": "^15.6.1",
"react-faux-dom": "^2.3.0"
}
}