-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.25 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.25 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
97
98
{
"name": "webpack-app-cli",
"version": "1.0.0",
"main": "index.js",
"description": "基于webpack5 的React架手架",
"scripts": {
"start": "cross-env NODE_ENV=development node server",
"build": "cross-env NODE_ENV=production webpack --config config/webpack.prod.js",
"build:dll": "rm -rf dll && cross-env NODE_ENV=production webpack --config config/webpack.dll.js",
"mock": "cross-env NODE_ENV=development MOCK=true node server",
"analyze": "cross-env NODE_ENV=production webpack --analyze --config config/webpack.analyze.js"
},
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.13.14",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-decorators": "^7.13.5",
"@babel/plugin-proposal-optional-chaining": "^7.13.12",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"@types/mockjs": "^1.0.3",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"@typescript-eslint/parser": "^4.20.0",
"add-asset-html-webpack-plugin": "^3.2.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"babel-plugin-module-resolver": "^4.1.0",
"chalk": "^4.1.0",
"clean-webpack-plugin": "^3.0.0",
"compression-webpack-plugin": "^7.1.2",
"cross-env": "^7.0.3",
"css-loader": "^5.2.0",
"css-minimizer-webpack-plugin": "^1.3.0",
"cssnano": "^4.1.10",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.1",
"eslint-webpack-plugin": "^2.5.3",
"file-loader": "^6.2.0",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.1",
"image-minimizer-webpack-plugin": "^2.2.0",
"ip": "^1.1.5",
"less": "^4.1.1",
"less-loader": "^8.0.0",
"mini-css-extract-plugin": "^1.4.0",
"node-less": "^1.0.0",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"portfinder": "^1.0.28",
"postcss": "^8.2.9",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^6.0.0",
"progress-bar-webpack-plugin": "^2.1.0",
"resolve-url-loader": "^3.1.2",
"speed-measure-webpack-plugin": "^1.5.0",
"style-loader": "^2.0.0",
"style-resources-loader": "^1.4.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.1.0",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.3",
"url-loader": "^4.1.1",
"webpack": "^5.30.0",
"webpack-build-notifier": "^2.1.1",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3"
},
"dependencies": {
"axios": "^0.21.1",
"classnames": "^2.3.1",
"mockjs": "^1.1.0",
"normalize.css": "^8.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"browserslist": {
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
],
"production": [
">0.2%",
"not dead",
"not op_mini all"
]
}
}