-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.39 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
{
"name": "react-template",
"description": "react项目启动模板",
"private": false,
"version": "1.0.0",
"main": "src/main.tsx",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite --host 0.0.0.0",
"start": "vite --host 0.0.0.0",
"prebuild": "pnpm run knip && tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"build": "tsc && vite build",
"preview": "pnpm build && vite preview",
"format": "biome format --write src",
"lint": "biome lint src --diagnostic-level=error",
"check": "biome check --write src",
"check:unsafe": "biome check --fix --unsafe src",
"lint-staged": "lint-staged",
"prepare": "husky",
"type-check": "tsc --noEmit",
"taze": "pnpm dlx taze",
"knip": "knip",
"release": "standard-version",
"generate": "plop",
"clean": "pnpm store prune && rimraf node_modules pnpm-lock.yaml dist",
"api": "swagger-typescript-api -p ./swagger.json -o ./src/services -r --axios --modular --clean-output",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"engines": {
"node": ">=22",
"pnpm": ">=9"
},
"dependencies": {
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-slot": "^1.1.1",
"@tanstack/react-query": "^5.9.0",
"@tanstack/react-query-devtools": "^5.9.0",
"axios": "^1.7.9",
"class-variance-authority": "^0.7.1",
"click-to-react-component": "^1.1.2",
"clsx": "^2.1.1",
"i18next": "^24.2.1",
"i18next-browser-languagedetector": "^8.0.2",
"i18next-http-backend": "^3.0.1",
"immer": "^10.1.1",
"lucide-react": "^0.471.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"react-i18next": "^15.4.0",
"react-router": "^7.1.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@fvilers/disable-react-devtools": "^1.3.0",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-links": "^8.5.0",
"@storybook/addon-onboarding": "^8.5.0",
"@storybook/blocks": "^8.5.0",
"@storybook/react": "^8.5.0",
"@storybook/react-vite": "^8.5.0",
"@storybook/test": "^8.5.0",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^14.6.0",
"@total-typescript/ts-reset": "^0.6.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.1",
"@types/node": "^22.9.4",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"@vitest/coverage-v8": "^2.1.8",
"autoprefixer": "^10.4.20",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"knip": "^5.9.4",
"lint-staged": "^15.3.0",
"plop": "^4.0.1",
"postcss": "^8.5.1",
"rimraf": "^6.0.1",
"standard-version": "^9.5.0",
"storybook": "^8.5.0",
"swagger-typescript-api": "^13.0.9",
"tailwindcss": "^3.4.9",
"tsx": "^4.9.5",
"typescript": "^5.7.3",
"vite": "^6.0.7",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^2.1.8"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}