-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.64 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.64 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
{
"name": "react-webpack5-template",
"version": "1.1.0",
"description": "webpack5 react 模板",
"main": "index.js",
"sideEffects": [
"*.css",
"*.less",
"*.scss",
"*.sass",
"*.styl"
],
"scripts": {
"dev": "webpack serve --config webpack.dev.js --hot",
"build": "webpack --config webpack.prod.js",
"lint": "eslint . --max-warnings=0",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test",
"test:e2e:headed": "playwright test --headed"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jacob-lcs/react-webpack5-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jacob-lcs/react-webpack5-template/issues"
},
"homepage": "https://github.com/jacob-lcs/react-webpack5-template#readme",
"browserslist": [
"last 2 versions",
"> 1%",
"ios >= 7"
],
"dependencies": {
"antd": "^6.3.2",
"dayjs": "^1.11.20",
"lodash-es": "^4.17.23",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "^2.13.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@swc/core": "^1.15.18",
"@types/lodash-es": "^4.17.12",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"browserslist": "^4.28.1",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"dotenv-webpack": "^9.0.0",
"eslint": "^10.0.3",
"eslint-plugin-react-compiler": "19.1.0-rc.2",
"globals": "^17.4.0",
"html-webpack-plugin": "^5.6.6",
"less": "^4.6.4",
"less-loader": "^12.3.2",
"lightningcss": "^1.32.0",
"mini-css-extract-plugin": "^2.10.1",
"postcss": "^8.5.8",
"postcss-loader": "^8.2.1",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^11.2.0",
"react-compiler-webpack": "^1.0.0",
"react-refresh": "^0.18.0",
"resolve-url-loader": "^5.0.0",
"sass": "^1.98.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"stylus": "^0.64.0",
"stylus-loader": "^8.1.3",
"swc-loader": "^0.2.7",
"terser-webpack-plugin": "^5.4.0",
"thread-loader": "^4.0.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"webpack": "^5.105.4",
"webpack-bundle-analyzer": "^5.2.0",
"webpack-cli": "^7.0.0",
"webpack-dev-server": "^5.2.3",
"webpack-manifest-plugin": "^6.0.1",
"webpack-merge": "^6.0.1",
"webpackbar": "^7.0.0"
},
"engines": {
"pnpm": "^10.0.0"
},
"packageManager": "pnpm@10.32.1"
}