-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.47 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
100
101
102
103
104
{
"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": "tsc --pretty --noEmit"
},
"packageManager": "[email protected]",
"dependencies": {
"@ai-sdk/openai": "1.0.4",
"@auth/core": "0.37.4",
"@aws-sdk/client-s3": "3.699.0",
"@aws-sdk/s3-request-presigner": "3.699.0",
"@biomejs/biome": "1.9.4",
"@discordjs/builders": "1.9.0",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.5.1",
"@graphql-codegen/typescript": "4.1.2",
"@graphql-typed-document-node/core": "3.2.0",
"@mdx-js/loader": "3.1.0",
"@mdx-js/react": "3.1.0",
"@neondatabase/serverless": "0.10.3",
"@next/mdx": "15.0.3",
"@paralleldrive/cuid2": "2.2.2",
"@parcel/watcher": "2.5.0",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-navigation-menu": "1.2.1",
"@radix-ui/react-progress": "1.1.0",
"@radix-ui/react-scroll-area": "1.2.1",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-slider": "1.2.1",
"@radix-ui/react-slot": "1.1.0",
"@react-google-maps/api": "2.20.3",
"@t3-oss/env-nextjs": "0.11.1",
"@tailwindcss/typography": "0.5.15",
"@types/bun": "1.1.13",
"@types/google-maps": "3.2.6",
"@types/mdx": "2.0.13",
"@types/node": "22.9.3",
"@types/nprogress": "0.2.3",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@vercel/analytics": "1.4.1",
"@vercel/speed-insights": "1.1.0",
"ai": "3.4.33",
"autoprefixer": "10.4.20",
"concurrently": "9.1.0",
"cva": "1.0.0-beta.1",
"discord-api-types": "0.37.107",
"dotenv": "16.4.5",
"drizzle-kit": "0.28.1",
"drizzle-orm": "0.36.4",
"github-slugger": "2.0.0",
"graphql": "16.9.0",
"graphql-request": "7.1.2",
"immer": "10.1.1",
"next": "15.0.1",
"next-auth": "5.0.0-beta.25",
"next-axiom": "1.5.1",
"nextjs-route-types": "2.0.1",
"nprogress": "0.2.0",
"nuqs": "2.2.3",
"octokit": "4.0.2",
"postcss": "8.4.49",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-intersection-observer": "9.13.1",
"react-markdown": "9.0.1",
"react-tweet": "3.2.1",
"react-wrap-balancer": "1.1.1",
"rehype-katex": "7.0.1",
"rehype-pretty-code": "0.14.0",
"rehype-slug": "6.0.0",
"remark-gfm": "4.0.0",
"remark-math": "6.0.0",
"sharp": "0.33.5",
"shiki": "1.23.1",
"tailwind-merge": "2.5.5",
"tailwindcss": "3.4.15",
"tailwindcss-animate": "1.0.7",
"tailwindcss-bg-patterns": "0.3.0",
"typescript": "5.7.2",
"valibot": "0.42.1",
"wrangler": "3.90.0",
"ytmusic-api": "5.2.2",
"zod": "3.23.8"
},
"trustedDependencies": ["@biomejs/biome", "@vercel/speed-insights", "sharp"],
"overrides": {
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]"
}
}