-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.79 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
{
"name": "@cesarlai/webpack5-react-template",
"version": "0.1.5",
"main": "index.js",
"repository": "git@github.com:CesarLai/webpack5-react-template.git",
"author": "Cesar Lai <git@cesarlai.com>",
"description": "基于 webpack 5 实现的 React App 模板。",
"license": "MIT",
"scripts": {
"start": "webpack-dev-server --config ./config/webpack.dev.js",
"build": "webpack --config ./config/webpack.prod.js"
},
"dependencies": {
"@babel/runtime-corejs3": "7.23.1",
"core-js": "3.6.5",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.17.8",
"@babel/node": "7.16.8",
"@babel/plugin-proposal-class-properties": "7.16.7",
"@babel/plugin-transform-runtime": "7.17.0",
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@babel/preset-typescript": "7.16.7",
"@types/node": "17.0.23",
"@types/react": "18.0.9",
"@types/react-dom": "18.0.3",
"@types/webpack-env": "1.16.3",
"babel-loader": "8.2.4",
"buffer": "6.0.3",
"clean-webpack-plugin": "4.0.0",
"copy-webpack-plugin": "10.2.4",
"cross-env": "7.0.3",
"crypto-browserify": "3.12.0",
"css-loader": "6.7.1",
"css-minimizer-webpack-plugin": "3.4.1",
"dotenv-webpack": "7.1.0",
"html-webpack-plugin": "5.5.0",
"less": "4.1.2",
"less-loader": "10.2.0",
"mini-css-extract-plugin": "2.6.0",
"path-browserify": "1.0.1",
"process": "0.11.10",
"stream-browserify": "3.0.0",
"style-loader": "3.3.1",
"tsconfig-paths-webpack-plugin": "3.5.2",
"typescript": "4.6.3",
"url-loader": "4.1.1",
"webpack": "5.71.0",
"webpack-cli": "5.1.0",
"webpack-dev-server": "4.7.4",
"webpack-manifest-plugin": "5.0.0",
"webpack-merge": "5.8.0"
}
}