-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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
{
"name": "tiny-react-project",
"type": "module",
"private": true,
"packageManager": "pnpm@8.6.2",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "npm run eslint && npm run stylelint",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"stylelint": "stylelint \"src/**/*.{css,less}\"",
"stylelint:fix": "stylelint \"src/**/*.{css,less}\" --fix",
"prepare": "husky install"
},
"dependencies": {
"@ant-design/icons": "^5.2.6",
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.11.1",
"@wuxh/utils": "^1.1.0",
"ahooks": "^3.7.8",
"antd": "^5.12.2",
"clsx": "^2.0.0",
"mobx": "^6.12.0",
"mobx-react-lite": "^4.0.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.20.1",
"swiper": "^11.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^2.4.6",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.2.1",
"@wuxh/commitlint-config": "0.0.2",
"@wuxh/stylelint-config-basic": "0.0.3",
"colors": "^1.4.0",
"commitlint": "^18.4.3",
"eslint": "^8.55.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"husky": "^8.0.3",
"less": "^4.2.0",
"lint-staged": "^15.2.0",
"postcss-less": "^6.0.0",
"simple-git-hooks": "^2.9.0",
"stylelint": "^16.0.2",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-pages": "^0.32.0",
"vite-plugin-windicss": "^1.9.2",
"vite-tsconfig-paths": "^4.2.2",
"windicss": "^3.5.6"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}