-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.91 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.91 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
{
"name": "react-webpack-staging",
"version": "1.0.1",
"description": "初始化react+webpack项目",
"main": "src/index.js",
"scripts": {
"build": "webpack --config webpack/webpack.prod.js",
"analysis": "webpack --config webpack/webpack.analysis.js",
"dev": "webpack-dev-server --config webpack/webpack.dev.js --open",
"commitlint": "commitlint --config commitlint.config.js -e -V",
"prepare": "husky install",
"lint": "lint-staged"
},
"keywords": [
"webpack",
"react"
],
"files": [
"dist"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"author": "flyfox01",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-decorators": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"chalk": "^4.1.2",
"clean-webpack-plugin": "^4.0.0",
"compression-webpack-plugin": "^10.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.28.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.31.11",
"file-loader": "^6.2.0",
"glob": "^8.0.3",
"glob-all": "^3.3.1",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.2",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"lint-staged": "^13.0.3",
"mini-css-extract-plugin": "^2.6.1",
"os": "^0.1.2",
"postcss-loader": "^7.0.1",
"postcss-preset-env": "^7.8.3",
"progress-bar-webpack-plugin": "^2.1.0",
"purgecss-webpack-plugin": "^5.0.0",
"react-refresh": "^0.14.0",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^3.3.1",
"stylelint": "^14.15.0",
"stylelint-config-prettier": "^9.0.4",
"stylelint-config-standard": "^29.0.0",
"stylelint-order": "^5.0.0",
"stylelint-prettier": "^2.0.0",
"thread-loader": "^3.0.4",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"url-loader": "^4.1.1",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-merge": "^5.8.0",
"webpack-parallel-uglify-plugin": "^2.0.0"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}