-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.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
{
"name": "webpack-antd-build",
"description": "A webpack antd build tools.",
"private": true,
"type": "module",
"engines": {
"node": ">=16.0.0"
},
"author": {
"name": "nuintun",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/nuintun/webpack-antd-builder",
"scripts": {
"lint": "tsc --noEmit",
"start": "node server.js",
"prod": "node tools/bin/webpack.config.prod.js",
"dev": "nodemon tools/bin/webpack.config.dev.js",
"report": "node tools/bin/webpack.config.prod.js --report",
"format": "prettier --write . --ignore-path .prettierignore"
},
"dependencies": {
"@ant-design/cssinjs": "^1.22.1",
"@ant-design/cssinjs-utils": "^1.1.3",
"@ant-design/icons": "^5.5.2",
"@ant-design/plots": "^2.3.2",
"@nuintun/qrcode": "^4.1.12",
"@swc/helpers": "^0.5.15",
"antd": "^5.22.5",
"classnames": "^2.5.1",
"core-js": "^3.39.0",
"dayjs": "^1.11.13",
"koa": "^2.15.3",
"koa-compress": "^5.1.1",
"koa-files": "^4.0.1",
"memoize-one": "^6.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-nest-router": "^0.19.25",
"throttle-debounce": "^5.0.2"
},
"devDependencies": {
"@nuintun/svgo-loader": "^0.3.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.15",
"@swc/core": "^1.10.1",
"@types/react": "^18.3.17",
"@types/react-dom": "^18.3.5",
"@types/throttle-debounce": "^5.0.2",
"autoprefixer": "^10.4.20",
"browserslist": "^4.24.3",
"bufferutil": "^4.0.8",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "7.0.0",
"css-modules-types-loader": "^0.6.2",
"find-free-ports": "^3.1.1",
"html-webpack-plugin": "^5.6.3",
"lightningcss": "^1.28.2",
"memfs": "^4.15.1",
"mini-css-extract-plugin": "^2.9.2",
"nodemon": "^3.1.9",
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"prettier": "^3.4.2",
"sass-embedded": "^1.83.0",
"sass-loader": "^16.0.4",
"svgc-loader": "^0.3.3",
"swc-loader": "^0.2.6",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.7.2",
"utf-8-validate": "^6.0.5",
"webpack": "^5.97.1",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-dev-service": "^0.14.6"
},
"overrides": {
"ws": "^8.0.0",
"glob": "^11.0.0"
},
"resolutions": {
"ws": "^8.0.0",
"glob": "^11.0.0"
}
}