-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.66 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
110
111
112
113
114
115
116
{
"name": "focusnow",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:reset": "npx prisma db push --force-reset",
"db:seed": "npx tsx ./config/seed.ts",
"db:push": "npx prisma db push",
"db:migrate": "npx prisma migrate dev",
"db:local:reset": "npx prisma migrate reset"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.13",
"@aws-sdk/client-s3": "^3.577.0",
"@aws-sdk/s3-presigned-post": "^3.577.0",
"@aws-sdk/signature-v4-crt": "^3.577.0",
"@deepgram/sdk": "^3.3.3",
"@hookform/resolvers": "^3.4.0",
"@pinecone-database/pinecone": "^2.2.1",
"@planetscale/database": "^1.18.0",
"@prisma/adapter-planetscale": "^5.14.0",
"@prisma/client": "^5.14.0",
"@prisma/extension-accelerate": "^0.6.3",
"@radix-ui/react-accordion": "^1.1.2",
"@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-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@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.0.7",
"@stripe/stripe-js": "^2.4.0",
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/auth-ui-react": "^0.4.7",
"@supabase/auth-ui-shared": "^0.1.8",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.43.2",
"@tabler/icons-react": "^2.47.0",
"@tanstack/react-table": "^8.17.3",
"@uploadthing/react": "^6.5.4",
"@upstash/ratelimit": "^1.1.3",
"ai": "^3.1.20",
"apache-arrow": "^16.1.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "^0.2.1",
"date-fns": "^3.6.0",
"extendable-media-recorder": "^9.2.4",
"extendable-media-recorder-wav-encoder": "^7.0.111",
"framer-motion": "^11.2.4",
"hamburger-react": "^2.5.1",
"js-tiktoken": "^1.0.12",
"langchain": "^0.1.37",
"lucide-react": "^0.368.0",
"mini-svg-data-uri": "^1.4.4",
"nanoid": "^5.0.7",
"next": "14.0.3",
"next-themes": "^0.2.1",
"onnxruntime-web": "^1.18.0",
"openai": "^4.47.1",
"pdf-parse": "^1.1.1",
"posthog-js": "^1.136.2",
"posthog-node": "^4.0.1",
"pusher": "^5.2.0",
"pusher-js": "8.4.0-rc2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.51.4",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.5.0",
"recharts": "^2.12.7",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"resend": "^3.2.0",
"sonner": "^1.4.41",
"stripe": "^14.25.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"uploadthing": "^6.10.4",
"vectordb": "^0.4.20",
"zod": "^3.23.8",
"zustand": "^4.5.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/audioworklet": "^0.0.55",
"@types/node": "^20.12.12",
"@types/pdf-parse": "^1.1.4",
"@types/react": "^18.3.2",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"autoprefixer": "^10.4.19",
"copy-webpack-plugin": "^12.0.2",
"eslint": "^8.57.0",
"eslint-config-next": "14.0.3",
"postcss": "^8.4.38",
"prisma": "^5.14.0",
"tailwindcss": "^3.4.3",
"tsx": "^4.10.5",
"typescript": "^5.4.5"
}
}