-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 2.91 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-antd-typescript-starter",
"version": "0.9.6",
"private": true,
"description": "React antd5 typescript redux template",
"author": "ShineShao <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"analyzer": "tsc && cross-env ANALYZER=true vite build",
"fix": "eslint --fix src/**/*.ts --fix src/**/*.tsx",
"lint": "eslint --ext .ts,tsx,.js,.jsx ./src",
"fmt": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css,scss,cjs}\"",
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"test:watch": "jest --watch",
"test": "jest",
"test:coverage": "jest --silent --watchAll=false --coverage"
},
"dependencies": {
"@ant-design/icons": "^5.5.1",
"@ezuikit/utils-logger": "1.0.1",
"@reduxjs/toolkit": "^2.2.7",
"@sentry/react": "^8.33.1",
"antd": "^5.21.0",
"axios": "^1.7.7",
"classnames": "^2.5.1",
"immer": "^10.1.1",
"js-cookie": "^3.0.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"redux": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/prompt-cli": "^19.5.0",
"@sentry/browser": "^8.33.1",
"@skax/camel": "^0.2.6",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.12.7",
"@types/react": "^18.2.78",
"@types/react-dom": "^18.2.25",
"@types/redux-logger": "^3.0.13",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-react-swc": "^3.7.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-xx": "^1.10.1",
"get-sass-vars": "^4.0.2",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"only-allow": "^1.2.1",
"postcss": "^8.4.47",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"redux-logger": "^3.0.6",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "^1.79.4",
"terser": "^5.34.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"vite": "^5.4.8",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.20.5"
},
"engines": {
"node": ">=18"
},
"bugs": {
"url": "https://github.com/qqxs/react-antd-typescript-starter/issues"
},
"homepage": "https://github.com/qqxs/react-antd-typescript-starter",
"repository": {
"type": "git",
"url": "git+https://github.com/qqxs/react-antd-typescript-starter.git",
"branch": "main",
"platform": "github"
}
}