-
Notifications
You must be signed in to change notification settings - Fork 277
/
package.json
110 lines (110 loc) · 3.4 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
105
106
107
108
109
110
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"stripe:listen": "stripe listen --forward-to http://localhost:3000/api/webhooks/stripe",
"db:push": "drizzle-kit push --config=drizzle.config.ts",
"db:migrate": "tsx ./src/db/migrate.ts",
"db:generate": "drizzle-kit generate --config=drizzle.config.ts",
"db:studio": "drizzle-kit studio",
"db:clear": "tsx ./src/db/clear.ts",
"db:seed": "tsx ./src/db/seed.ts",
"db:reset": "npm run db:clear && npm run db:migrate && npm run db:seed",
"postinstall": "fumadocs-mdx"
},
"dependencies": {
"@aws-sdk/client-s3": "3.709.0",
"@aws-sdk/lib-storage": "3.709.0",
"@aws-sdk/s3-presigned-post": "3.709.0",
"@aws-sdk/s3-request-presigner": "3.709.0",
"@hookform/resolvers": "3.9.1",
"@oslojs/crypto": "1.0.1",
"@oslojs/encoding": "1.1.0",
"@radix-ui/react-alert-dialog": "1.1.2",
"@radix-ui/react-avatar": "1.1.1",
"@radix-ui/react-checkbox": "1.1.2",
"@radix-ui/react-dialog": "1.1.2",
"@radix-ui/react-dropdown-menu": "2.1.2",
"@radix-ui/react-label": "2.1.0",
"@radix-ui/react-popover": "1.1.2",
"@radix-ui/react-scroll-area": "1.2.1",
"@radix-ui/react-select": "2.1.2",
"@radix-ui/react-slot": "1.1.0",
"@radix-ui/react-switch": "1.1.1",
"@radix-ui/react-tabs": "1.1.1",
"@radix-ui/react-toast": "1.2.2",
"@radix-ui/react-tooltip": "1.1.4",
"@react-email/components": "0.0.31",
"@t3-oss/env-nextjs": "0.11.1",
"@tiptap/extension-color": "2.10.3",
"@tiptap/extension-list-item": "2.10.3",
"@tiptap/extension-text-style": "2.10.3",
"@tiptap/react": "2.10.3",
"@tiptap/starter-kit": "2.10.3",
"arctic": "2.3.1",
"canvas-confetti": "1.9.3",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"date-fns": "4.1.0",
"dotenv": "16.4.7",
"drizzle-orm": "0.38.0",
"fumadocs-core": "^14.6.0",
"fumadocs-mdx": "^11.1.2",
"fumadocs-ui": "^14.6.0",
"lodash": "4.17.21",
"lucide-react": "0.468.0",
"next": "15.1.0",
"next-mdx-remote": "5.0.0",
"next-themes": "0.4.4",
"nextjs-toploader": "3.7.15",
"nprogress": "0.2.0",
"pg": "8.13.1",
"postgres": "^3.4.5",
"posthog-js": "1.195.0",
"react": "19.0.0",
"react-day-picker": "9.4.2",
"react-dom": "19.0.0",
"react-email": "3.0.4",
"react-hook-form": "7.54.0",
"resend": "4.0.1",
"sanitize-html": "2.13.1",
"server-only": "0.0.1",
"stripe": "17.4.0",
"tailwind-merge": "2.5.5",
"tailwindcss-animate": "1.0.7",
"unique-names-generator": "4.7.1",
"uuid": "11.0.3",
"vaul": "1.1.1",
"zod": "3.24.1",
"zsa": "0.6.0",
"zsa-react": "0.2.3"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.15",
"@types/canvas-confetti": "1.6.4",
"@types/lodash": "4.17.13",
"@types/mdx": "^2.0.13",
"@types/node": "22.10.2",
"@types/nprogress": "0.2.3",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@types/sanitize-html": "2.13.0",
"@types/uuid": "10.0.0",
"drizzle-kit": "0.30.0",
"eslint": "9.16.0",
"eslint-config-next": "15.1.0",
"postcss": "8.4.49",
"tailwindcss": "3.4.16",
"tsx": "4.19.2",
"typescript": "5.7.2"
},
"engines": {
"pnpm": ">=9.0.0 <10.0.0",
"node": ">=20.0.0 <21.0.0"
}
}