-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 748 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 748 Bytes
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
{
"name": "relai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"seed": "npx --yes tsx scripts/seed.ts",
"seed:clear": "npx --yes tsx scripts/seed.ts --clear"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.0",
"@supabase/supabase-js": "^2.43.0",
"@supabase/ssr": "0.10.2",
"next": "15.5.15",
"react": "^18",
"react-dom": "^18",
"resend": "^3.2.0"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"dotenv": "^16.4.5",
"tsx": "^4.7.2",
"typescript": "^5",
"eslint": "^8",
"eslint-config-next": "15.5.15"
}
}