-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "visual-graph-algos",
"version": "0.1.0",
"description": "D3 visualisation of Graph Algorithms in a React Component - how controversial",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production webpack",
"lint": "eslint client",
"start": "NODE_ENV=development node webpack.dev.server.js"
},
"author": "Gordon Dent <[email protected]>",
"license": "ISC",
"dependencies": {
"bluebird": "^3.3.5",
"classnames": "^2.2.3",
"d3": "3.5.16",
"d3-polygon": "^0.2.1",
"extract-text-webpack-plugin": "^1.0.1",
"lodash": "^4.6.1",
"nib": "^1.1.0",
"react": "15.0.1",
"react-dom": "15.0.1",
"skrollr": "^0.6.26"
},
"devDependencies": {
"babel-core": "^6.6.5",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.5.0",
"css-loader": "^0.23.1",
"eslint": "^2.8.0",
"eslint-plugin-react": "^5.0.1",
"file-loader": "^0.8.5",
"react-hot-loader": "^1.3.0",
"style-loader": "^0.13.0",
"stylus": "^0.54.0",
"stylus-loader": "^1.5.1",
"url-loader": "^0.5.7",
"webpack": "^1.12.14",
"webpack-dev-server": "^1.14.1"
}
}