-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.35 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
{
"name": "typescript",
"version": "0.0.1",
"description": "TypeScript + Bun Exampmle",
"author": "@QuantumLeap",
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite --host",
"prebuild": "rimraf dist",
"build": "tsc --noEmit",
"preview": "vite preview",
"deploy": "wrangler deploy --keep-vars",
"typecheck": "tsc --noEmit",
"lint": "bunx --bun biome check",
"format": "bunx --bun biome check --write",
"test": "bun test",
"cf-typegen": "wrangler types"
},
"dependencies": {
"@cloudflare/vite-plugin": "^1.18.0",
"@cloudflare/workers-types": "^4.20251216.0",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@commitlint/cz-commitlint": "^20.2.0",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/query-async-storage-persister": "^5.90.14",
"@tanstack/react-query": "^5.90.12",
"@tanstack/react-query-persist-client": "^5.90.14",
"@tanstack/react-router": "^1.141.2",
"@tanstack/react-router-devtools": "^1.141.2",
"@zodios/core": "^10.9.6",
"@zodios/react": "^10.4.5",
"axios": "^1.13.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"commitizen": "^4.3.1",
"commitlint": "^20.2.0",
"jotai": "^2.16.0",
"lucide-react": "^0.561.0",
"motion": "^12.23.26",
"next-themes": "^0.4.6",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-error-boundary": "^6.0.0",
"react-hook-form": "^7.68.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.18",
"tailwindcss-animate": "^1.0.7",
"workbox-precaching": "^7.4.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.4",
"@hono/vite-dev-server": "^0.23.0",
"@tanstack/router-devtools": "^1.141.2",
"@tanstack/router-plugin": "^1.141.2",
"@types/bun": "^1.3.14",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"conventional-changelog-conventionalcommits": "^9.1.0",
"globals": "^16.5.0",
"openapi-zod-client": "^1.18.3",
"rimraf": "^6.1.2",
"tw-animate-css": "^1.4.0",
"typescript": "^7.0.2",
"vite": "^7.3.0",
"vite-intlayer": "^7.4.0",
"vite-plugin-node-polyfills": "^0.24.0",
"vite-plugin-pwa": "^1.2.0",
"wrangler": "^4.55.0"
}
}