-
Notifications
You must be signed in to change notification settings - Fork 270
/
package.json
109 lines (109 loc) · 3.35 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
{
"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"
},
"dependencies": {
"@aws-sdk/client-s3": "3.587.0",
"@aws-sdk/lib-storage": "3.587.0",
"@aws-sdk/s3-presigned-post": "3.587.0",
"@aws-sdk/s3-request-presigner": "3.587.0",
"@hookform/resolvers": "3.4.2",
"@oslojs/crypto": "1.0.1",
"@oslojs/encoding": "1.1.0",
"@radix-ui/react-alert-dialog": "1.0.5",
"@radix-ui/react-avatar": "1.0.4",
"@radix-ui/react-checkbox": "1.0.4",
"@radix-ui/react-dialog": "1.0.5",
"@radix-ui/react-dropdown-menu": "2.0.6",
"@radix-ui/react-label": "2.0.2",
"@radix-ui/react-popover": "1.0.7",
"@radix-ui/react-scroll-area": "1.0.5",
"@radix-ui/react-select": "2.0.0",
"@radix-ui/react-slot": "1.0.2",
"@radix-ui/react-switch": "1.0.3",
"@radix-ui/react-tabs": "1.0.4",
"@radix-ui/react-toast": "1.1.5",
"@radix-ui/react-tooltip": "1.1.0",
"@react-email/components": "0.0.19",
"@t3-oss/env-nextjs": "0.10.1",
"@tiptap/extension-color": "2.4.0",
"@tiptap/extension-list-item": "2.4.0",
"@tiptap/extension-text-style": "2.4.0",
"@tiptap/react": "2.4.0",
"@tiptap/starter-kit": "2.4.0",
"arctic": "1.9.0",
"canvas-confetti": "1.9.3",
"class-variance-authority": "0.7.0",
"clsx": "2.1.1",
"date-fns": "3.6.0",
"dotenv": "16.4.5",
"drizzle-orm": "0.30.10",
"fumadocs-core": "11.3.1",
"fumadocs-mdx": "8.2.26",
"fumadocs-ui": "11.3.1",
"lodash": "4.17.21",
"lucide-react": "0.381.0",
"next": "14.2.15",
"next-mdx-remote": "5.0.0",
"next-themes": "0.3.0",
"nextjs-toploader": "1.6.12",
"nprogress": "0.2.0",
"pg": "8.11.5",
"postgres": "3.4.4",
"posthog-js": "1.136.2",
"react": "18.3.1",
"react-day-picker": "8.10.1",
"react-dom": "18.3.1",
"react-email": "3.0.1",
"react-hook-form": "7.51.5",
"resend": "3.2.0",
"sanitize-html": "2.13.0",
"server-only": "0.0.1",
"stripe": "15.8.0",
"tailwind-merge": "2.3.0",
"tailwindcss-animate": "1.0.7",
"unique-names-generator": "4.7.1",
"uuid": "9.0.1",
"vaul": "0.9.1",
"zod": "3.23.8",
"zsa": "0.5.1",
"zsa-react": "0.2.2"
},
"devDependencies": {
"@tailwindcss/typography": "0.5.13",
"@types/canvas-confetti": "1.6.4",
"@types/lodash": "4.17.4",
"@types/mdx": "2.0.13",
"@types/node": "20.14.0",
"@types/nprogress": "0.2.3",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/sanitize-html": "2.11.0",
"@types/uuid": "9.0.8",
"drizzle-kit": "0.21.4",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"postcss": "8.4.38",
"tailwindcss": "3.4.3",
"tsx": "4.16.2",
"typescript": "5.4.5"
},
"engines": {
"pnpm": ">=9.0.0 <10.0.0",
"node": ">=20.0.0 <21.0.0"
}
}