-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.87 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
{
"name": "git-labyrinth",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build && tsc --noEmit",
"preview": "vite preview",
"start": "node .output/server/index.mjs",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt --write \"src/**/*.{ts,tsx}\"",
"format:check": "oxfmt --check \"src/**/*.{ts,tsx}\"",
"optimize-og": "tsx scripts/subset-font.ts && tsx scripts/optimize-sprites.ts"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@gsap/react": "^2.1.2",
"@supabase/ssr": "^0.8.0",
"@supabase/supabase-js": "^2.95.3",
"@suspensive/react": "^3.19.0",
"@suspensive/react-query-5": "^3.19.0",
"@tanstack/react-query": "^5.90.21",
"@tanstack/react-router": "^1.159.10",
"@tanstack/react-router-devtools": "^1.159.10",
"@tanstack/react-start": "^1.159.12",
"clsx": "^2.1.1",
"gsap": "^3.14.2",
"i18next": "^25.8.10",
"i18next-browser-languagedetector": "^8.2.1",
"ky": "^1.8.1",
"lucide-react": "^0.511.0",
"motion": "^12.34.0",
"octokit": "^5.0.5",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.5.4",
"recharts": "2.15.4",
"tailwind-merge": "^3.3.0",
"tailwind-variants": "^3.2.2",
"tw-animate-css": "^1.2.9",
"valibot": "^1.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.1.7",
"@types/node": "^22.14.0",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.3",
"nitro": "3.0.1-alpha.2",
"oxfmt": "^0.32.0",
"oxlint": "^1.2.0",
"sharp": "^0.34.5",
"subset-font": "^2.4.0",
"tailwindcss": "^4.1.7",
"tsx": "^4.21.0",
"typescript": "^5.8.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^5.1.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"sharp"
]
}
}