-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.88 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.88 KB
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
{
"name": "react-antd-typescript-starter",
"version": "1.1.2",
"private": true,
"description": "React antd5 typescript redux template",
"author": "ShineShao <xiaoshaoqq@gmail.com>",
"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": "^6.0.0",
"@ezuikit/utils-logger": "1.0.1",
"@reduxjs/toolkit": "^2.8.2",
"@sentry/react": "^8.41.0",
"antd": "^5.29.1",
"axios": "^1.11.0",
"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": "^6.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^6.28.0",
"redux": "^5.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@commitlint/prompt-cli": "^19.8.1",
"@sentry/browser": "^8.41.0",
"@skax/camel": "^0.2.6",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^30.0.0",
"@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": "^7.2.1",
"@vitejs/plugin-react-swc": "^4.0.1",
"cross-env": "^10.0.0",
"eslint": "^9.39.2",
"eslint-config-xx": "^2.0.0",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.0.5",
"jest-environment-jsdom": "^30.0.5",
"only-allow": "^1.2.1",
"postcss": "^8.5.6",
"postcss-preset-env": "^10.2.4",
"prettier": "^3.7.4",
"pretty-quick": "^4.2.2",
"redux-logger": "^3.0.6",
"rollup-plugin-visualizer": "^6.0.3",
"sass": "^1.90.0",
"terser": "^5.43.1",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"vite": "^7.1.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^1.0.2"
},
"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"
}
}