-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "react-d3-experiments",
"version": "1.0.0",
"description": "React & D3js experiments",
"main": "app.js",
"repository": {
"type": "git",
"url": "git+https://github.com/maryzam/react-d3js-experiments.git"
},
"keywords": [
"React",
"ReactJs",
"D3Js",
"DataViz",
"DataVisualization",
"Demo",
"Tutorial"
],
"author": "Mary Zam",
"license": "MIT",
"bugs": {
"url": "https://github.com/maryzam/react-d3js-experiments/issues"
},
"homepage": "https://github.com/maryzam/react-d3js-experiments#readme",
"scripts": {
"dev": "webpack --mode development",
"build": "webpack --mode production",
"start": "webpack-dev-server"
},
"dependencies": {
"d3": "^5.1.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-faux-dom": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"webpack": "^4.6.0",
"webpack-cli": "^2.0.15",
"webpack-dev-server": "^3.1.3"
}
}