-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 944 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
{
"name": "sankey-diagram-builder",
"version": "1.0.0",
"description": "A D3/Faux-dom/React Sankey Diagram Builder App",
"main": "app.js",
"scripts": {
"dev-server": "webpack-dev-server",
"dev": "webpack --watch"
},
"author": "Nick Balestra",
"license": "MIT",
"dependencies": {
"bootstrap": "^3.3.6",
"d3": "^3.5.10",
"d3-plugins-sankey": "^1.2.1",
"lodash": "^3.10.1",
"react": "^0.14.3",
"react-dom": "^0.14.3",
"react-faux-dom": "^2.1.1",
"react-modal": "^0.6.1",
"superagent": "^1.4.0"
},
"devDependencies": {
"babel-core": "^6.2.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"css-loader": "^0.23.0",
"extract-text-webpack-plugin": "^0.9.1",
"file-loader": "^0.8.5",
"style-loader": "^0.13.0",
"url-loader": "^0.5.7",
"webpack": "^1.12.9",
"webpack-dev-server": "^1.14.0"
}
}