-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.11 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.11 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "graph-visualization",
"version": "1.0.0",
"description": "graph visualization",
"main": "index.js",
"scripts": {
"start": "better-npm-run start",
"build": "better-npm-run build"
},
"betterScripts": {
"build": {
"command": "webpack --config ./build/webpack.config.js",
"env": {
"NODE_ENV": "production"
}
},
"start": {
"command": "webpack-dev-server --config ./build/webpack.config.js",
"env": {
"NODE_ENV": "development"
}
}
},
"keywords": [
"graph"
],
"author": "can.yang",
"license": "ISC",
"devDependencies": {
"autoprefixer": "^9.1.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-plugin-import": "^1.8.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.24.1",
"better-npm-run": "^0.1.1",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.3",
"css-loader": "^1.0.0",
"cssnano": "^4.0.5",
"happypack": "^5.0.0",
"html-webpack-plugin": "^3.2.0",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"pixrem": "^4.0.1",
"postcss-discard-duplicates": "^4.0.0",
"postcss-flexibility": "^2.0.0",
"postcss-loader": "2.1.5",
"postcss-nested": "^3.0.0",
"progress-bar-webpack-plugin": "^1.11.0",
"style-loader": "^0.22.1",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"webpack": "4.10.2",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"antd": "^3.7.3",
"d3": "^5.5.0",
"d3-react-force": "1.0.10",
"js-base64": "^2.4.8",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"react": "^16.4.2",
"react-color": "^2.14.1",
"react-dom": "^16.4.2"
}
}