-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.25 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
{
"name": "front-web",
"scripts": {
"start": "cross-env NODE_ENV=development DEBUG_MODE=test webpack-dev-server --config webpack/webpack.dev.js",
"build": "cross-env NODE_ENV=production PRODUCT=xx webpack --config webpack/webpack.prod.js",
"tsc": "tsc"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.20.7",
"@types/google-protobuf": "^3.15.6",
"@types/loadable__component": "^5.13.4",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"add-asset-html-webpack-plugin": "^5.0.2",
"babel-loader": "^9.1.2",
"babel-plugin-import": "^1.13.6",
"clean-webpack-plugin": "^4.0.0",
"core-js": "^3.27.1",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"less-plugin-clean-css": "^1.5.1",
"mini-css-extract-plugin": "^2.7.2",
"regenerator-runtime": "^0.13.11",
"sass-loader": "^13.2.0",
"typescript": "^4.9.4",
"url-loader": "^4.1.1",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpackbar": "^5.0.2",
"yargs": "^17.6.2"
},
"dependencies": {
"@ant-design/icons": "^5.0.0",
"@loadable/component": "^5.15.2",
"antd": "^5.1.4",
"google-protobuf": "^3.21.2",
"grpc-web": "^1.4.2",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-freeze": "^1.0.3",
"react-is": "^18.2.0",
"react-router-dom": "^6.6.2",
"styled-components": "^5.3.6"
}
}