-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
105 lines (105 loc) · 3.33 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
{
"version": "0.1.0",
"private": true,
"scripts": {
"check": "biome check .",
"check:ci": "biome ci .",
"build": "bun download-assets && bun codegen && next build",
"codegen": "graphql-codegen --config codegen.ts",
"db:push": "drizzle-kit push",
"deploy-worker": "wrangler deploy misc/multi-tenancy-worker.ts --name multi-tenant-on-website --compatibility-date 2023-12-05",
"dev": "concurrently \"bun codegen --watch\" \"next dev\"",
"download-assets": "bun run scripts/download-assets.ts",
"format": "biome format --write .",
"lint": "biome lint .",
"start": "next start",
"type-check": "next typegen && tsc --pretty --noEmit"
},
"packageManager": "bun@1.3.0",
"dependencies": {
"@ai-sdk/openai": "2.0.89",
"@ai-sdk/react": "2.0.127",
"@auth/core": "0.41.1",
"@aws-sdk/client-s3": "3.981.0",
"@aws-sdk/s3-request-presigner": "3.981.0",
"@biomejs/biome": "2.3.13",
"@discordjs/builders": "1.13.1",
"@graphql-codegen/cli": "6.1.1",
"@graphql-codegen/client-preset": "5.2.2",
"@graphql-codegen/typescript": "5.0.7",
"@graphql-typed-document-node/core": "3.2.0",
"@mdx-js/loader": "3.1.1",
"@mdx-js/react": "3.1.1",
"@neondatabase/serverless": "1.0.2",
"@next/mdx": "16.1.6",
"@paralleldrive/cuid2": "2.3.1",
"@parcel/watcher": "2.5.6",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-navigation-menu": "1.2.14",
"@radix-ui/react-progress": "1.1.8",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-slider": "1.3.6",
"@radix-ui/react-slot": "1.2.4",
"@react-google-maps/api": "2.20.8",
"@t3-oss/env-nextjs": "0.13.10",
"@tailwindcss/postcss": "4.1.18",
"@tailwindcss/typography": "0.5.19",
"@types/bun": "1.3.8",
"@types/google-maps": "4.0.0",
"@types/mdx": "2.0.13",
"@types/node": "24.10.9",
"@types/nprogress": "0.2.3",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vercel/analytics": "1.6.1",
"@vercel/speed-insights": "1.3.1",
"ai": "5.0.125",
"autoprefixer": "10.4.24",
"concurrently": "9.2.1",
"cva": "1.0.0-beta.4",
"discord-api-types": "0.38.38",
"dotenv": "17.2.3",
"drizzle-kit": "0.31.8",
"drizzle-orm": "0.45.1",
"github-slugger": "2.0.0",
"graphql": "16.12.0",
"graphql-request": "7.4.0",
"immer": "10.2.0",
"next": "15.5.7",
"next-auth": "5.0.0-beta.30",
"next-axiom": "1.10.0",
"nprogress": "0.2.0",
"nuqs": "2.8.8",
"octokit": "5.0.5",
"postcss": "8.5.6",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-intersection-observer": "9.16.0",
"react-markdown": "10.1.0",
"react-tweet": "3.3.0",
"react-wrap-balancer": "1.1.1",
"rehype-katex": "7.0.1",
"rehype-pretty-code": "0.14.1",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.1",
"remark-math": "6.0.0",
"sharp": "0.34.4",
"shiki": "3.22.0",
"tailwind-merge": "3.4.0",
"tailwindcss": "4.1.18",
"tailwindcss-animate": "1.0.7",
"tailwindcss-bg-patterns": "0.3.0",
"typescript": "5.9.3",
"valibot": "1.2.0",
"wrangler": "4.61.1",
"ytmusic-api": "5.3.0",
"zod": "4.3.6"
},
"trustedDependencies": [
"@biomejs/biome",
"@vercel/speed-insights",
"sharp"
]
}