forked from nicolashery/example-d3-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 932 Bytes
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
{
"name": "example-d3-react",
"version": "0.1.0",
"dependencies": {
"cuid": "^1.2.4",
"d3": "^3.4.11",
"lodash": "^2.4.1",
"react": "^0.11.1"
},
"devDependencies": {
"css-loader": "^0.7.0",
"gulp": "^3.6.2",
"gulp-jshint": "^1.6.1",
"gulp-react": "^0.5.0",
"http-server": "^0.6.1",
"jshint-stylish": "^0.4.0",
"jsx-loader": "^0.11.0",
"less-loader": "^0.7.2",
"shelljs": "^0.3.0",
"style-loader": "^0.6.3",
"webpack": "^1.3.3-beta1",
"webpack-dev-server": "^1.4.7"
},
"engines": {
"node": "0.10.x"
},
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --devtool source-map --cache --colors --progress",
"build": "node build",
"server": "http-server ./dist",
"jshint": "gulp jshint",
"jshint-watch": "gulp jshint-watch",
"gh-pages": "node ghpages"
}
}