-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.36 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
{
"name": "knowledge-builder",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"plop": "plop --plopfile generators/plopfile.js",
"db:push": "pnpx prisma db push",
"studio": "pnpx prisma studio"
},
"dependencies": {
"@conform-to/react": "^1.1.5",
"@conform-to/zod": "^1.1.5",
"@hookform/resolvers": "^3.9.0",
"@kinde-oss/kinde-auth-nextjs": "^2.3.6",
"@nextui-org/react": "^2.4.6",
"@prisma/client": "^5.18.0",
"@supabase/supabase-js": "^2.45.1",
"@tiptap/core": "^2.6.6",
"@tiptap/extension-blockquote": "^2.6.6",
"@tiptap/extension-bullet-list": "^2.6.6",
"@tiptap/extension-code": "^2.6.6",
"@tiptap/extension-code-block": "^2.6.6",
"@tiptap/extension-collaboration": "^2.6.6",
"@tiptap/extension-document": "^2.6.6",
"@tiptap/extension-hard-break": "^2.6.6",
"@tiptap/extension-heading": "^2.6.6",
"@tiptap/extension-link": "^2.6.6",
"@tiptap/extension-list-item": "^2.6.6",
"@tiptap/extension-ordered-list": "^2.6.6",
"@tiptap/extension-paragraph": "^2.6.6",
"@tiptap/extension-task-item": "^2.7.1",
"@tiptap/extension-task-list": "^2.7.1",
"@tiptap/extension-text": "^2.6.6",
"@tiptap/extension-text-style": "^2.6.6",
"@tiptap/extension-underline": "^2.6.6",
"@tiptap/html": "^2.6.6",
"@uploadthing/react": "^6.7.2",
"canvas-confetti": "^1.9.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"framer-motion": "^11.3.29",
"lucide-react": "^0.429.0",
"moment": "^2.30.1",
"next": "14.2.6",
"next-themes": "^0.3.0",
"novel": "^0.5.0",
"plop": "^4.0.1",
"react": "^18",
"react-confetti": "^6.1.0",
"react-dom": "^18",
"react-hook-form": "^7.52.2",
"react-share": "^5.1.0",
"slugify": "^1.6.6",
"sonner": "^1.5.0",
"stripe": "^16.12.0",
"uploadthing": "^6.13.2",
"zod": "^3.23.8",
"zustand": "^4.5.5"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.6",
"postcss": "^8",
"prisma": "^5.18.0",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"engines": {
"npm": ">=10.5.0",
"node": ">=20.12.0"
}
}