-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 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
77
78
79
{
"name": "issues-tracker-app",
"private": true,
"type": "module",
"imports": {
"@/*": "./src/*"
},
"scripts": {
"dev": "vite dev --port 3000",
"build": "rm -rf dist && vite build && tsc --noEmit",
"preview": "vite preview",
"test": "vitest run",
"format": "biome format --write",
"lint": "biome lint",
"check": "biome check",
"fix": "biome check --fix",
"deploy": "npm run build && wrangler deploy",
"cf-typegen": "wrangler types",
"prepare": "husky"
},
"dependencies": {
"@base-ui/react": "1.4.1",
"@cloudflare/vite-plugin": "1.26.0",
"@icons-pack/react-simple-icons": "13.13.0",
"@octokit/auth-app": "8.2.0",
"@react-native-async-storage/async-storage": "3.0.2",
"@react-oauth/google": "0.13.5",
"@tailwindcss/vite": "4.1.18",
"@tanstack/query-async-storage-persister": "5.100.9",
"@tanstack/react-devtools": "0.10.3",
"@tanstack/react-query": "5.100.1",
"@tanstack/react-query-devtools": "5.100.9",
"@tanstack/react-query-persist-client": "5.100.9",
"@tanstack/react-router": "1.169.2",
"@tanstack/react-router-devtools": "1.166.13",
"@tanstack/react-router-ssr-query": "1.166.12",
"@tanstack/react-start": "1.167.65",
"@tanstack/router-plugin": "1.167.35",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"common-utils-pkg": "4.3.2",
"cookie": "1.1.1",
"framer-motion": "12.38.0",
"fuse.js": "7.3.0",
"lucide-react": "0.577.0",
"next-themes": "0.4.6",
"nitro": "3.0.260429-beta",
"octokit": "5.0.5",
"radix-ui": "1.4.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"sonner": "2.0.7",
"tailwind-merge": "3.0.2",
"tailwindcss": "4.1.18",
"tw-animate-css": "1.3.6",
"zod": "4.4.3",
"zustand": "5.0.12"
},
"devDependencies": {
"@biomejs/biome": "2.4.5",
"@rsbuild/core": "2.0.1",
"@tailwindcss/typography": "0.5.16",
"@tanstack/devtools-vite": "0.6.0",
"@testing-library/dom": "10.4.1",
"@testing-library/react": "16.3.0",
"@types/node": "22.10.2",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"@vitejs/plugin-react": "6.0.1",
"@vitejs/plugin-rsc": "0.5.24",
"husky": "9.1.7",
"jsdom": "28.1.0",
"lint-staged": "16.4.0",
"typescript": "5.7.2",
"vite": "8.0.0",
"vitest": "3.0.5",
"wrangler": "4.70.0"
}
}