-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
67 lines (67 loc) · 2.05 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
{
"name": "vite-tm-v2",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "biome format --write .",
"lint": "biome lint . && eslint .",
"check": "biome check",
"gcapi": "sh scripts/openapi-generate.sh && npm run format",
"ci:add": "changeset add",
"ci:_version": "changeset version",
"ci:_tag": "changeset tag && git push --follow-tags",
"ci:release": "npm run ci:_version && npm run ci:_tag",
"prepare": "husky"
},
"packageManager": "[email protected]",
"dependencies": {
"@ant-design/icons": "^5.5.2",
"@ant-design/pro-components": "^2.8.3",
"@ebay/nice-modal-react": "^1.2.13",
"@tanstack/react-query": "^5.64.0",
"@tanstack/react-router": "^1.95.5",
"antd": "^5.23.0",
"dayjs": "^1.11.13",
"es-toolkit": "^1.31.0",
"immer": "^10.1.1",
"jotai": "^2.11.0",
"jotai-immer": "^0.4.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-error-boundary": "^5.0.0",
"type-fest": "^4.32.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@ant-design/v5-patch-for-react-19": "^1.0.3",
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.18.0",
"@tanstack/router-devtools": "^1.95.5",
"@tanstack/router-plugin": "^1.95.5",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^22.10.5",
"@types/react": "^19.0.6",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"autoprefixer": "^10.4.20",
"eslint": "^9.18.0",
"eslint-config-sync-biome": "^1.9.4",
"eslint-plugin-import-x": "^4.6.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"typescript-eslint": "^8.19.1",
"vite": "^6.0.7"
}
}