-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.24 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.24 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
{
"name": "react-antd",
"version": "0.0.1",
"private": true,
"type": "module",
"imports": {
"#util": "./src/util/index.ts",
"#comm": "./src/comm/index.ts",
"#components": "./src/components/index.ts"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"format": "oxfmt",
"lint": "oxlint . && eslint .",
"check": "pnpm run format &&tsc -b && pnpm run lint",
"gc-open-api": "openapi-typescript https://raw.githubusercontent.com/sebastienlevert/jsonplaceholder-api/refs/heads/main/openapi.yaml -o ./src/comm/openapi/schema.d.ts",
"prepare": "husky",
"release": "sh scripts/release.sh"
},
"dependencies": {
"@ant-design/icons": "^6.1.0",
"@ant-design/pro-components": "^2.8.10",
"@tanstack/react-query": "^5.90.17",
"@tanstack/react-router": "^1.150.0",
"antd": "^6.2.0",
"dayjs": "^1.11.19",
"es-toolkit": "^1.44.0",
"immer": "^11.1.3",
"jotai": "^2.16.2",
"jotai-immer": "^0.4.1",
"openapi-fetch": "^0.15.0",
"overlay-kit": "^1.8.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"zod": "^4.3.5"
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/js": "^9.39.2",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/router-devtools": "^1.150.0",
"@tanstack/router-plugin": "^1.150.0",
"@total-typescript/tsconfig": "^1.0.4",
"@types/node": "^25.0.9",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-plugin-oxlint": "^1.39.0",
"eslint-plugin-perfectionist": "^5.3.1",
"eslint-plugin-unicorn": "^62.0.0",
"git-cliff": "^2.11.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"openapi-typescript": "^7.10.1",
"oxfmt": "^0.24.0",
"oxlint": "^1.39.0",
"rollup-plugin-visualizer": "^6.0.5",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vite": "^7.3.1"
},
"packageManager": "pnpm@10.4.1+sha512.c753b6c3ad7afa13af388fa6d808035a008e30ea9993f58c6663e2bc5ff21679aa834db094987129aa4d488b86df57f7b634981b2f827cdcacc698cc0cfb88af"
}