forked from jenshaak/CoachingAI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.91 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.91 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
{
"name": "coaching-ai",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"db:start": "supabase db start",
"db:stop": "supabase db stop",
"db:reset": "supabase db reset",
"db:pull": "supabase db pull --linked",
"db:push": "supabase db push --linked",
"db:sync": "npm run db:pull && npm run db:start",
"db:status": "supabase status",
"db:migration": "supabase migration new",
"db:types": "supabase gen types typescript --linked > types/supabase.ts"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.52.0",
"@radix-ui/react-avatar": "^1.1.4",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "^1.2.10",
"@supabase/auth-helpers-nextjs": "^0.10.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.4",
"ai": "^4.3.16",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"dotenv": "^16.5.0",
"googleapis": "^150.0.1",
"jose": "^6.0.10",
"lucide-react": "^0.288.0",
"next": "14.1.0",
"openai": "^4.104.0",
"posthog-js": "^1.246.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.1.0",
"zustand": "^5.0.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1"
}
}