-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.12 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.12 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
{
"name": "the-witness-protocol",
"version": "0.5.0",
"private": true,
"scripts": {
"dev": "next dev -p 5000 -H 0.0.0.0",
"build": "next build",
"start": "next start -p 5000 -H 0.0.0.0",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@supabase/ssr": "^0.10.2",
"@supabase/supabase-js": "^2.104.0",
"@vercel/analytics": "^2.0.1",
"drizzle-orm": "^0.45.2",
"framer-motion": "^12.38.0",
"lucide-react": "^1.7.0",
"next": "^16.2.4",
"openai": "^6.34.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"recharts": "^3.8.1",
"resend": "^6.12.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@sentry/nextjs": "^10.49.0",
"@tailwindcss/postcss": "^4",
"@types/node": "^25.6.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"drizzle-kit": "^0.31.10",
"eslint": "^9",
"eslint-config-next": "^16.2.4",
"jsdom": "^29.0.2",
"postgres": "^3.4.9",
"tailwindcss": "^4",
"typescript": "^6.0.3",
"vite": "^8.0.9",
"vitest": "^4.1.4"
}
}