-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.16 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
{
"name": "SEED-CLI",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development webpack serve --config config/webpack.config.dev.js",
"start": "npm run dev",
"build": "cross-env NODE_ENV=production webpack --progress --config ./config/webpack.config.prod.js",
"f2elint-scan": "f2elint scan",
"f2elint-fix": "f2elint fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Seedsa/SEED-CLI.git"
},
"keywords": [
"webpack5",
"脚手架",
"typescript"
],
"author": "SEED",
"license": "ISC",
"homepage": "https://github.com/Seedsa/SEED-CLI#readme",
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/preset-env": "^7.14.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.14.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.4.3",
"@types/react": "^17.0.15",
"@types/react-dom": "^17.0.9",
"babel-loader": "^8.2.2",
"babel-plugin-import": "^1.13.3",
"copy-webpack-plugin": "^9.0.1",
"cross-env": "^7.0.3",
"css-loader": "^6.2.0",
"css-minimizer-webpack-plugin": "^3.0.2",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^5.3.2",
"less": "^4.1.1",
"less-loader": "^10.0.1",
"mini-css-extract-plugin": "^2.1.0",
"postcss": "^8.3.6",
"postcss-loader": "^6.1.1",
"postcss-preset-env": "^6.7.0",
"react-hot-loader": "^4.13.0",
"style-loader": "^3.2.1",
"svg-sprite-loader": "^6.0.9",
"typescript": "^4.3.5",
"webpack": "^5.47.1",
"webpack-cli": "^4.7.2",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@types/react-router-dom": "^5.1.8",
"antd": "^4.16.10",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^5.2.0",
"react-router-dom": "^5.1.8"
},
"browserslist": [
"iOS >= 8",
"last 1 versions",
"> 2%",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "f2elint commit-file-scan",
"commit-msg": "f2elint commit-msg-scan"
}
}
}