-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.55 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.55 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
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
{
"name": "better-auth-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "npx drizzle-kit generate",
"db:migrate": "npx drizzle-kit migrate",
"db:push": "npx drizzle-kit push",
"db:seed": "npx tsx src/db/seed.ts",
"db:seed-update": "npx tsx src/db/update-seeded.ts"
},
"dependencies": {
"@ai-sdk/openai": "^2.0.0",
"@ai-sdk/provider": "^2.0.0",
"@ai-sdk/provider-utils": "^3.0.0",
"@ai-sdk/react": "^2.0.0",
"@ariakit/react": "^0.4.17",
"@emoji-mart/data": "^1.2.1",
"@faker-js/faker": "^9.9.0",
"@neondatabase/serverless": "^1.0.1",
"@platejs/ai": "^49.2.4",
"@platejs/autoformat": "^49.0.0",
"@platejs/basic-nodes": "^49.0.0",
"@platejs/basic-styles": "^49.0.0",
"@platejs/callout": "^49.0.0",
"@platejs/caption": "^49.0.0",
"@platejs/code-block": "^49.0.0",
"@platejs/combobox": "^49.0.0",
"@platejs/comment": "^49.0.0",
"@platejs/date": "^49.0.2",
"@platejs/dnd": "^49.2.2",
"@platejs/docx": "^49.0.0",
"@platejs/emoji": "^49.0.0",
"@platejs/excalidraw": "^49.0.0",
"@platejs/floating": "^49.0.0",
"@platejs/indent": "^49.0.0",
"@platejs/juice": "^49.0.0",
"@platejs/layout": "^49.2.1",
"@platejs/link": "^49.1.1",
"@platejs/list": "^49.2.0",
"@platejs/markdown": "^49.2.1",
"@platejs/math": "^49.0.0",
"@platejs/media": "^49.0.0",
"@platejs/mention": "^49.0.0",
"@platejs/resizable": "^49.0.0",
"@platejs/selection": "^49.2.4",
"@platejs/slash-command": "^49.0.0",
"@platejs/suggestion": "^49.0.0",
"@platejs/table": "^49.1.13",
"@platejs/toc": "^49.0.0",
"@platejs/toggle": "^49.0.0",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-context-menu": "^2.2.15",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toolbar": "^1.1.10",
"@radix-ui/react-tooltip": "^1.2.7",
"@udecode/cn": "^49.0.15",
"@uploadthing/react": "^7.3.1",
"ai": "^5.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.2.1",
"drizzle-orm": "^0.44.4",
"html2canvas-pro": "^1.5.11",
"lodash": "^4.17.21",
"lowlight": "^3.3.0",
"lucide-react": "^0.535.0",
"next": "15.4.5",
"pdf-lib": "^1.17.1",
"platejs": "^49.2.4",
"react": "19.1.0",
"react-day-picker": "^9.8.1",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "19.1.0",
"react-lite-youtube-embed": "^2.5.1",
"react-player": "^3.3.1",
"react-textarea-autosize": "^8.5.9",
"react-tweet": "^3.2.2",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1",
"tailwind-scrollbar-hide": "^4.0.0",
"uploadthing": "^7.7.2",
"use-file-picker": "^2.1.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"drizzle-kit": "^0.31.4",
"eslint": "^9",
"eslint-config-next": "15.4.5",
"tailwindcss": "^4",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.6",
"typescript": "^5"
}
}