-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·111 lines (111 loc) · 3.59 KB
/
package.json
File metadata and controls
executable file
·111 lines (111 loc) · 3.59 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
{
"name": "blog_app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"studio": "prisma studio"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.40",
"@auth/prisma-adapter": "^2.4.1",
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^5.19.1",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toggle": "^1.1.0",
"@tanstack/react-table": "^8.20.5",
"@tiptap/extension-blockquote": "^2.5.9",
"@tiptap/extension-bullet-list": "^2.5.9",
"@tiptap/extension-code-block": "^2.5.9",
"@tiptap/extension-color": "^2.6.6",
"@tiptap/extension-document": "^2.5.9",
"@tiptap/extension-dropcursor": "^2.5.9",
"@tiptap/extension-highlight": "^2.7.4",
"@tiptap/extension-image": "^2.5.9",
"@tiptap/extension-link": "^2.6.6",
"@tiptap/extension-list-item": "^2.5.9",
"@tiptap/extension-paragraph": "^2.5.9",
"@tiptap/extension-placeholder": "^2.5.9",
"@tiptap/extension-task-item": "^2.6.6",
"@tiptap/extension-task-list": "^2.6.6",
"@tiptap/extension-text": "^2.5.9",
"@tiptap/extension-text-style": "^2.6.6",
"@tiptap/extension-underline": "^2.7.4",
"@tiptap/pm": "^2.5.8",
"@tiptap/react": "^2.5.8",
"@tiptap/starter-kit": "^2.5.8",
"@uploadcare/react-uploader": "^0.6.1",
"@uploadcare/react-widget": "^2.4.7",
"@vercel/analytics": "^1.3.1",
"@vercel/speed-insights": "^1.0.12",
"ai": "^3.2.37",
"bcryptjs": "^2.4.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cmdk": "1.0.0",
"dotenv": "^16.4.5",
"framer-motion": "^11.5.4",
"lowlight": "^3.1.0",
"lucide-react": "^0.428.0",
"next": "^15.0.0-rc.0",
"next-auth": "^5.0.0-beta.19",
"next-cloudinary": "^6.7.0",
"next-nprogress-bar": "^2.3.13",
"next-themes": "^0.3.0",
"nextjs-progressbar": "^0.0.16",
"novel": "^0.5.0",
"prisma": "^5.19.1",
"react": "19.0.0-rc-fb9a90fa48-20240614",
"react-contenteditable": "^3.3.7",
"react-dom": "19.0.0-rc-fb9a90fa48-20240614",
"react-hook-form": "^7.52.1",
"react-icons": "^5.3.0",
"recharts": "^2.13.0-alpha.4",
"sharp": "^0.33.4",
"sonner": "^1.5.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"tippy.js": "^6.3.7",
"ts-node": "^10.9.2",
"use-debounce": "^10.0.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.13",
"@types/bcryptjs": "^2.4.6",
"@types/node": "^20.14.11",
"@types/react": "18.3.3",
"@types/react-dom": "^18",
"@types/uploadcare": "^0.4.4",
"eslint": "^8",
"eslint-config-next": "^14.2.5",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"autoprefixer": "^10.0.1"
},
"overrides": {
"react-is": "^19.0.0-rc-a960b92c-20240819",
"typescript": "^5.5.3",
"autoprefixer": "^10.0.1"
}
}