forked from zjn-zjn/ice-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.23 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.23 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
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
{
"name": "ice-web",
"version": "0.0.1",
"description": "后台",
"main": "index.js",
"scripts": {
"start": "cross-env BUILD_ENV=dev NODE_ENV=development node ./scripts/start.js --reset-cache",
"build-test": "cross-env BUILD_ENV=test NODE_ENV=production node --max-old-space-size=4096 ./scripts/build.js",
"build-dev": "cross-env BUILD_ENV=dev NODE_ENV=production node --max-old-space-size=4096 ./scripts/build.js",
"build-prod": "cross-env BUILD_ENV=prod NODE_ENV=production node --max-old-space-size=4096 ./scripts/build.js",
"analyz": "cross-env BUILD_ENV=prod NODE_ENV=production node --max-old-space-size=4096 ./scripts/build.js"
},
"author": "zjn",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/runtime": "^7.2.0",
"@types/node": "^12.12.17",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
"@types/webpack": "^4.4.24",
"autoprefixer": "^9.4.3",
"babel-loader": "^8.0.4",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^3.0.0",
"connect-history-api-fallback": "^1.6.0",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"detect-port": "^1.3.0",
"express": "^4.16.4",
"file-loader": "^4.0.0",
"fork-ts-checker-webpack-plugin": "^1.3.7",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"less-loader": "^5.0.0",
"mini-css-extract-plugin": "^0.8.0",
"node-sass": "^4.11.0",
"open": "^7.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.12.20",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^1.2.3",
"ts-import-plugin": "^1.5.5",
"ts-loader": "^6.0.4",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.0.0",
"typescript": "^3.2.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^2.0.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-middleware": "^3.7.2",
"webpack-hot-middleware": "^2.25.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@antv/g6": "^3.3.7",
"@babel/polyfill": "^7.2.5",
"@types/anymatch": "^3.0.0",
"antd": "^3.26.13",
"axios": "^0.19.0",
"babel-plugin-import": "^1.13.3",
"dva": "^2.4.1",
"dva-loading": "^3.0.19",
"less": "^3.11.1",
"normalize.css": "^8.0.1",
"path-to-regexp": "^6.1.0",
"qs": "^6.6.0",
"react": "^16.12.0",
"react-color": "^2.19.3",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0",
"react-live-route": "^3.1.6",
"react-router-breadcrumbs-hoc": "^3.2.5",
"webpack-bundle-analyzer": "^4.5.0"
},
"browserslist": {
"browsers": [
">1%",
"last 4 versions",
"Firefox ESR",
"not ie < 9"
]
},
"yxpm": {
"output": "dist"
},
"proxy": {
"*": {
"target": "http://127.0.0.1:8121",
"changeOrigin": true,
"cookieDomainRewrite": "http://127.0.0.1:8121"
}
}
}