-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
104 lines (104 loc) · 3.12 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name" : "react-entry-template",
"version" : "1.0.0",
"author" : "Haroro",
"private" : true,
"description" : "React.v17 + Webpack.v5 多入口H5项目模板",
"main" : "index.js",
"license" : "MIT",
"keywords" : [
"H5",
"react",
"react 17",
"webpack",
"webpack 5",
"haroro-cli",
"multiple entry",
"多入口",
"template",
"模板"
],
"scripts" : {
"dev" : "cross-env BASE_CONFIG_ENV=dev webpack serve --config webpack.dev.js",
"dev:test" : "cross-env BASE_CONFIG_ENV=test webpack serve --config webpack.dev.js",
"dev:prod" : "cross-env BASE_CONFIG_ENV=prod wwwwebpack serve --config webpack.dev.js",
"build:dev" : "cross-env BASE_CONFIG_ENV=dev webpack --config webpack.prod.js",
"build:test" : "cross-env BASE_CONFIG_ENV=test webpack --config webpack.prod.js",
"build:prod" : "cross-env BASE_CONFIG_ENV=prod webpack --config webpack.prod.js"
},
"devDependencies" : {
"@babel/core" : "^7.12.9",
"@babel/plugin-proposal-class-properties" : "^7.12.1",
"@babel/plugin-transform-runtime" : "^7.15.0",
"@babel/preset-env" : "^7.12.7",
"@babel/preset-react" : "^7.12.7",
"autoprefixer" : "^10.3.3",
"babel-eslint" : "^10.1.0",
"babel-loader" : "^8.2.2",
"babel-plugin-import" : "^1.13.3",
"clean-webpack-plugin" : "^3.0.0",
"cross-env" : "^7.0.3",
"css-loader" : "^5.2.7",
"css-minimizer-webpack-plugin" : "^3.0.2",
"cssnano" : "^5.0.8",
"eslint" : "^7.32.0",
"eslint-config-airbnb" : "^18.2.1",
"eslint-loader" : "^4.0.2",
"eslint-plugin-babel" : "^5.3.1",
"eslint-plugin-import" : "^2.24.2",
"eslint-plugin-jsx-a11y" : "^6.4.1",
"eslint-plugin-react" : "^7.25.1",
"html-webpack-plugin" : "^5.3.2",
"mini-css-extract-plugin" : "^2.2.2",
"postcss" : "^8.3.6",
"postcss-loader" : "^6.1.1",
"postcss-plugin-px2rem" : "^0.8.1",
"process" : "^0.11.10",
"sass" : "^1.30.0",
"sass-loader" : "^10.1.0",
"sass-resources-loader" : "^2.2.4",
"style-loader" : "^2.0.0",
"terser-webpack-plugin" : "^5.2.4",
"url-loader" : "^4.1.1",
"webpack" : "^5.51.1",
"webpack-cli" : "^4.8.0",
"webpack-dev-server" : "^4.1.0",
"webpack-merge" : "^5.4.0"
},
"dependencies" : {
"ahooks" : "^2.10.9",
"amfe-flexible" : "^2.2.1",
"axios" : "^0.21.4",
"copy-webpack-plugin" : "^11.0.0",
"js-md5" : "^0.7.3",
"prop-types" : "^15.7.2",
"react" : "^17.0.1",
"react-dom" : "^17.0.1",
"react-highlight" : "^0.15.0",
"react-redux" : "^7.2.5",
"react-router" : "^5.2.1",
"react-router-dom" : "^5.3.0",
"redux" : "^4.1.1",
"redux-thunk" : "^2.3.0",
"vconsole" : "~3.9.2",
"webpackbar" : "^5.0.0-3",
"zarm" : "^2.9.7"
},
"sideEffects" : [
"*.css",
"*.scss"
],
"browserslist" : [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"repository" : {
"type" : "git",
"url" : "git+https://github.com/iHaroro/react-entry-template.git"
},
"bugs" : {
"url" : "https://github.com/iHaroro/react-entry-template/issues"
},
"homepage" : "https://github.com/iHaroro/react-entry-template#readme"
}