-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
96 lines (96 loc) · 3.03 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
{
"name": "react_luo",
"version": "1.0.0",
"description": "react脚手架,最新技术",
"main": "index.js",
"scripts": {
"start": "node server.js --max_old_space_size=4096",
"build": "webpack --config webpack.production.config.js",
"dist": "set NODE_ENV=production&& node server.js",
"distmac": "export NODE_ENV=production&& node server.js",
"prettier": "prettier --write \"{src,mock}/**/*.{js,css,less}\"",
"cover": "./node_modules/.bin/istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": "admin",
"license": "ISC",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/javaLuo/react-luo.git"
},
"installConfig": {
"pnp": false
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@rematch/core": "^2.2.0",
"antd": "^4.24.2",
"axios": "^1.1.3",
"core-js": "^3.26.1",
"favicons": "6.2.2",
"lodash": "^4.17.21",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-loadable": "^5.5.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.3",
"redux": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.20.2",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.20.1",
"antd-dayjs-webpack-plugin": "^1.0.6",
"autoprefixer": "^10.4.13",
"babel-loader": "^9.1.0",
"babel-plugin-import": "^1.13.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.7.2",
"css-minimizer-webpack-plugin": "^4.2.2",
"dayjs": "^1.11.6",
"eslint": "^8.27.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^3.2.0",
"express": "^4.18.2",
"favicons-webpack-plugin": "^5.0.2",
"happypack": "^5.0.1",
"html-webpack-plugin": "^5.5.0",
"less": "^4.1.3",
"less-loader": "^11.1.0",
"mini-css-extract-plugin": "^2.6.1",
"mockjs": "^1.1.0",
"postcss": "^8.4.19",
"postcss-loader": "^7.0.1",
"prettier": "^2.7.1",
"style-loader": "^3.3.1",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.75.0",
"webpack-bundle-analyzer": "^4.7.0",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-hot-middleware": "^2.25.3",
"webpackbar": "^5.0.2",
"workbox-webpack-plugin": "^6.5.4",
"xml-loader": "^1.2.1"
},
"browserslist": [
"iOS >= 8",
"last 1 versions",
"> 2%",
"not dead",
"not op_mini all"
]
}