-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.35 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"db:setup": "docker-compose up -d postgres && sleep 5 && pnpm run db:reset",
"db:seed": "npx tsx scripts/db/seed.ts",
"db:clean": "npx tsx scripts/db/clean.ts",
"db:reset": "pnpm db:clean && pnpm db:push && pnpm db:seed",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:studio": "drizzle-kit studio",
"db:push": "drizzle-kit push",
"verify:github": "npx tsx scripts/verify-github-setup.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check --write .",
"check:ci": "biome check .",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@ai-sdk/openai": "^1.3.24",
"@auth/drizzle-adapter": "^1.11.1",
"@fontsource-variable/manrope": "^5.2.8",
"@hookform/resolvers": "^5.2.2",
"@luno-kit/react": "^0.0.8",
"@luno-kit/ui": "^0.0.8",
"@noble/hashes": "^2.0.1",
"@octokit/app": "^16.1.2",
"@octokit/auth-app": "^8.1.2",
"@octokit/rest": "^22.0.1",
"@polkadot/util": "^14.0.1",
"@polkadot/util-crypto": "^14.0.1",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@simplewebauthn/browser": "^13.2.2",
"@simplewebauthn/server": "^13.2.2",
"@supabase/supabase-js": "^2.86.2",
"@tailwindcss/postcss": "4.1.7",
"@tanstack/react-query": "^5.90.12",
"@types/node": "^22.19.1",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"ai": "^4.3.19",
"autoprefixer": "^10.4.22",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dedot": "^0.16.0",
"dotenv": "^16.6.1",
"drizzle-kit": "^0.31.8",
"drizzle-orm": "^0.43.1",
"drizzle-zod": "^0.8.3",
"jose": "^6.1.3",
"lottie-react": "^2.4.1",
"lucide-react": "^0.511.0",
"next": "15.5.9",
"next-auth": "5.0.0-beta.30",
"postcss": "^8.5.6",
"postgres": "^3.4.7",
"pusher": "^5.2.0",
"pusher-js": "^8.4.0",
"radix-ui": "^1.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.68.0",
"resend": "^6.8.0",
"server-only": "^0.0.1",
"swr": "^2.3.7",
"tailwind-merge": "^3.4.0",
"tailwindcss": "4.1.7",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"zod": "3.25.76"
},
"packageManager": "pnpm@10.5.0+sha512.11106a5916c7406fe4b8cb8e3067974b8728f47308a4f5ac5e850304afa6f57e2847d7950dfe78877d8d36bfb401d381c4215db3a4c3547ffa63c14333a6fa51",
"pnpm": {
"overrides": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
},
"ignoredBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver"
],
"onlyBuiltDependencies": [
"@tailwindcss/oxide",
"esbuild",
"sharp",
"unrs-resolver"
]
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@dedot/chaintypes": "^0.171.0",
"@total-typescript/ts-reset": "^0.6.1",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"vitest": "^3.2.4"
}
}