-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
164 lines (164 loc) · 4.8 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "react-cli",
"version": "1.0.0",
"private": true,
"homepage": "https://github.com/Jairwin-L/react-cli#readme",
"bugs": {
"url": "https://github.com/Jairwin-L/react-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jairwin-L/react-cli.git"
},
"funding": "https://github.com/sponsors/Jairwin-L",
"license": "MIT",
"author": "Jairwin",
"type": "module",
"scripts": {
"dev": "webpack-dev-server --config ./config/webpack.dev.config.mjs",
"build": "webpack --config ./config/webpack.prod.config.mjs",
"ci:eslint": "eslint -f json src -o ./.ci/eslint.json",
"lint": "eslint . && stylelint \"**/*.{css,less,scss}\"",
"lint:fix": "prettier --write . && eslint --fix . && stylelint --fix \"**/*.{css,less,scss}\"",
"prepare": "husky"
},
"dependencies": {
"@ant-design/charts": "^1.4.3",
"@ant-design/icons": "^4.8.3",
"@babel/polyfill": "^7.12.1",
"@hot-loader/react-dom": "^17.0.2",
"@types/highlight.js": "^10.1.0",
"@types/nprogress": "^0.2.3",
"@types/react": "^16.14.62",
"@types/react-dom": "^16.9.25",
"@types/react-loadable": "^5.5.11",
"@types/react-router-dom": "^5.3.3",
"antd": "^4.24.16",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"flyio": "^0.6.14",
"loadsh": "^0.0.4",
"marked": "^1.2.9",
"nprogress": "^0.2.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hot-loader": "^4.13.1",
"react-loadable": "^5.5.0",
"typescript": "^5.7.3",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.25.9",
"@babel/plugin-proposal-export-default-from": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.6.1",
"@types/node": "^20.17.12",
"@types/webpack-env": "^1.18.5",
"autoprefixer": "^9.8.8",
"babel-loader": "^8.4.1",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-import": "^1.13.8",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"build-hash-webpack-plugin": "^1.0.4",
"clean-webpack-plugin": "^4.0.0",
"commitlint-config-ali": "^1.1.0",
"cross-env": "^7.0.3",
"css-loader": "^3.6.0",
"css-minimizer-webpack-plugin": "^6.0.0",
"eslint": "^8.57.1",
"eslint-config-ali": "^15.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-externals-plugin": "^3.8.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^9.1.7",
"less": "^3.13.1",
"less-loader": "^6.2.0",
"lint-staged": "^15.3.0",
"mini-css-extract-plugin": "^0.9.0",
"offline-plugin": "^5.0.7",
"optimize-css-assets-webpack-plugin": "^5.0.8",
"postcss-loader": "^4.3.0",
"prettier": "^3.4.2",
"prettier-config-ali": "^1.3.2",
"purgecss-webpack-plugin": "^6.0.0",
"rimraf": "^3.0.2",
"rm-unused-css": "^1.1.16",
"style-loader": "^1.3.0",
"stylelint": "^16.13.1",
"stylelint-config-ali": "^2.1.1",
"stylelint-prettier": "^5.0.2",
"terser-webpack-plugin": "^5.3.11",
"ts-import-plugin": "^3.0.0",
"ts-loader": "^9.5.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"unplugin-auto-import": "^19.0.0",
"webpack": "^5.97.1",
"webpack-build-notifier": "^2.3.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0",
"webpack-hook-plugin": "^1.0.7",
"webpack-merge": "^5.10.0",
"webpack-parallel-uglify-plugin": "^2.0.0",
"webpackbar": "^6.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"cnpm": {
"mode": "pnpm"
},
"npm": {
"mode": "pnpm"
},
"yarn": {
"mode": "pnpm"
},
"commitlint": {
"extends": [
"ali"
]
},
"lint-staged": {
"*.{cjs,cts,js,jsx,mjs,mts,ts,tsx,vue}": "eslint --fix",
"*.{css,less,scss}": "stylelint --fix",
"*.{cjs,css,cts,html,js,json,jsx,less,md,mjs,mts,scss,ts,tsx,vue,yaml,yml}": "prettier --write"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": "prettier-config-ali",
"eslintConfig": {
"extends": [
"ali/typescript/react",
"plugin:prettier/recommended"
]
},
"stylelint": {
"extends": [
"stylelint-config-ali",
"stylelint-prettier/recommended"
]
}
}