forked from react-d3/react-d3-basic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.1 KB
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
{
"name": "react-d3-basic",
"version": "1.5.2",
"description": "react chart component",
"main": "./lib/index.js",
"directories": {
"example": "example"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "NODE_ENV=0 webpack -w",
"build": "rm -rf ./lib && babel -w --stage 0 src --out-dir lib",
"prod": "NODE_ENV=0 webpack --config webpack.prod.config.js && NODE_ENV=1 webpack --config webpack.prod.config.js"
},
"author": "ElixirDoc team",
"license": "Apache 2.0",
"devDependencies": {
"babel": "^5.8.23",
"babel-core": "^5.8.24",
"babel-loader": "^5.3.2",
"css-loader": "^0.18.0",
"dsv-loader": "^1.0.0",
"json-loader": "^0.5.3",
"jsx-loader": "^0.13.2",
"react": "^0.14.3",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.12.4",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.11.0"
},
"peerDependencies": {
"react": "^0.14.0"
},
"dependencies": {
"d3": "^3.5.6",
"react-d3-core": "^1.1.0",
"react-d3-shape": "^0.1.3",
"react-dom": "^0.14.0",
"react-faux-dom": "^2.1.0"
}
}