-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.2 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.2 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
66
67
68
69
70
71
72
73
{
"name": "smart-notes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@ai-sdk/google": "^1.1.6",
"@ai-sdk/google-vertex": "^2.1.6",
"@ai-sdk/openai": "^1.1.3",
"@ai-sdk/react": "^1.1.17",
"@radix-ui/react-checkbox": "^1.1.3",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-popover": "^1.1.5",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tooltip": "^1.1.7",
"@supabase/supabase-js": "^2.49.1",
"@tailwindcss/typography": "^0.5.16",
"@tiptap/core": "^2.3.0",
"@tiptap/extension-color": "^2.10.4",
"@tiptap/extension-highlight": "^2.10.4",
"@tiptap/extension-horizontal-rule": "^2.10.4",
"@tiptap/extension-image": "^2.10.4",
"@tiptap/extension-link": "^2.10.4",
"@tiptap/extension-placeholder": "^2.10.4",
"@tiptap/extension-task-item": "^2.10.4",
"@tiptap/extension-task-list": "^2.10.4",
"@tiptap/extension-text-style": "^2.10.4",
"@tiptap/extension-underline": "^2.10.4",
"@tiptap/pm": "^2.11.0",
"@tiptap/react": "^2.3.0",
"@tiptap/starter-kit": "^2.3.0",
"@tiptap/suggestion": "^2.3.0",
"ai": "^4.1.6",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"lowlight": "^3.3.0",
"lucide-react": "^0.474.0",
"next": "15.2.1",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^9.0.3",
"react-moveable": "^0.56.0",
"react-resizable-panels": "^2.1.7",
"rehype-minify-whitespace": "^6.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"sonner": "^1.7.3",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"tippy.js": "^6.3.7",
"tldraw": "^3.8.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
}
}