-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.68 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
{
"name": "client-echo",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push"
},
"dependencies": {
"@marsidev/react-turnstile": "^1.1.0",
"@react-email/components": "^0.0.33",
"@supabase/ssr": "^0.5.2",
"@supabase/supabase-js": "^2.49.1",
"@upstash/ratelimit": "^2.0.5",
"@upstash/redis": "^1.34.4",
"clsx": "^2.1.1",
"dompurify": "^3.2.4",
"drizzle-orm": "^0.45.2",
"framer-motion": "^13.1.0",
"isomorphic-dompurify": "^2.22.0",
"jsdom": "^26.0.0",
"lucide-react": "^0.475.0",
"next": "^14.2.24",
"nodemailer": "^9.0.5",
"postgres": "^3.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resend": "^4.1.2",
"stripe": "^17.7.0",
"tailwind-merge": "^3.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/dompurify": "^3.2.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.17.19",
"@types/nodemailer": "^8.0.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"autoprefixer": "^10.4.20",
"dotenv": "^16.4.7",
"drizzle-kit": "^0.30.4",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.24",
"postcss": "^8.5.3",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vitest": "^3.0.6"
},
"overrides": {
"prismjs": "^1.30.0",
"glob": "^10.4.5",
"postcss": "^8.5.3",
"esbuild": "^0.25.0"
}
}