-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 3.44 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
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "risk-dashboard",
"version": "2.0.5",
"description": "",
"private": true,
"engines": {
"node": ">=6.13.1",
"npm": ">=3.10.10"
},
"scripts": {
"commit": "git add . && git cz && git pull && git push",
"precommit": "eslint src/app.js",
"build": "webpack --mode production --progress --config webpack/webpack.prd.conf.js",
"build:dll": "webpack --mode production --progress --config webpack/webpack.dll.conf.js",
"dev": "webpack-dev-server --mode development --progress --config webpack/webpack.dev.conf.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^8.2.0",
"babel-loader": "^8.0.0",
"babel-plugin-import": "^1.8.0",
"brace": "^0.11.1",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.1",
"css-loader": "^1.0.0",
"eslint": "^5.6.1",
"eslint-plugin-react": "^7.11.1",
"file-loader": "^1.1.11",
"glob": "^7.1.2",
"happypack": "^5.0.0",
"html-webpack-include-assets-plugin": "^1.0.4",
"html-webpack-plugin": "^3.1.0",
"html2canvas": "^1.0.0-alpha.12",
"internal-ip": "^3.0.1",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"lodash": "^4.17.10",
"postcss": "^6.0.20",
"postcss-calc": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-custom-media": "^6.0.0",
"postcss-custom-properties": "^7.0.0",
"postcss-custom-selectors": "^4.0.1",
"postcss-flexbugs-fixes": "^3.3.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"postcss-media-minmax": "^3.0.0",
"postcss-nested": "^3.0.0",
"postcss-nesting": "^4.2.1",
"postcss-pseudoelements": "^5.0.0",
"postcss-selector-matches": "^3.0.1",
"postcss-selector-not": "^3.0.1",
"prerender-spa-plugin": "^3.2.1",
"raw-loader": "^0.5.1",
"react": "^16.5.2",
"react-ace": "^6.2.0",
"react-dom": "^16.5.2",
"react-hot-loader": "^4.3.11",
"react-placeholder": "^3.0.1",
"react-redux": "^4.0.0",
"redux": "^3.0.4",
"redux-devtools": "^3.4.1",
"redux-devtools-dock-monitor": "^1.1.3",
"redux-devtools-log-monitor": "^1.4.0",
"reqwest": "^2.0.5",
"string-replace-webpack-plugin": "^0.1.3",
"style-loader": "^0.20.3",
"superagent": "^3.8.3",
"superagent-mock": "^3.7.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"url-loader": "^1.0.1",
"webpack": "^4.5.0",
"webpack-bundle-analyzer": "^3.0.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.1",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"antd": "^3.9.3",
"babel-eslint": "^10.0.1",
"classnames": "^2.2.5",
"d3": "^5.7.0",
"history": "^4.7.2",
"prop-types": "^15.6.2",
"react-loadable": "^5.5.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1"
}
}