-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.28 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"$schema": "https://json.schemastore.org/package.json",
"name": "website",
"version": "0.1.0",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint . --fix",
"format": "biome format ./src --write && biome check ./src --write --unsafe && biome lint ./src --write --unsafe",
"fmt": "bun format",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@gsap/react": "^2.1.1",
"@hookform/resolvers": "^4.0.0",
"@icons-pack/react-simple-icons": "^11.0.0",
"@libsql/client": "^0.14.0",
"@number-flow/react": "^0.5.0",
"@oslojs/crypto": "^1.0.1",
"@oslojs/encoding": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.6",
"@react-spring/three": "^9.7.5",
"@react-spring/web": "^9.7.5",
"@react-three/drei": "^9.120.1",
"@react-three/fiber": "^9.0.0-rc.1",
"@t3-oss/env-nextjs": "^0.12.0",
"@tanstack/react-query": "^5.62.3",
"@tanstack/react-query-devtools": "^5.62.3",
"@tanstack/react-query-next-experimental": "^5.62.3",
"@tanstack/react-table": "^8.20.6",
"@trpc/client": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.3",
"@vercel/functions": "^2.0.0",
"@vercel/speed-insights": "^1.1.0",
"arctic": "^3.0.0",
"babel-plugin-react-compiler": "^19.0.0-beta-37ed2a7-20241206",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.39.0",
"geist": "^1.3.1",
"gsap": "^3.12.5",
"jotai": "^2.11.0",
"lucide-react": "^0.475.0",
"motion": "^12.0.0",
"next": "15.2.0-canary.37",
"nextjs-toploader": "^3.7.15",
"posthog-js": "^1.194.5",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-github-btn": "^1.4.0",
"react-hook-form": "^7.54.2",
"react-snow-overlay": "^1.0.12",
"sonner": "^1.7.1",
"superjson": "^2.2.2",
"tailwind-merge": "^3.0.0",
"three": "^0.173.0",
"usehooks-ts": "^3.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.1",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.1",
"@types/three": "^0.173.0",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"drizzle-kit": "^0.30.1",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.0",
"eslint-plugin-drizzle": "^0.2.3",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-compiler": "^19.0.0-beta-37ed2a7-20241206",
"eslint-plugin-react-hooks": "^5.1.0",
"postcss": "^8.4.49",
"tailwind-scrollbar-hide": "^2.0.0",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5.7.2"
}
}