-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.94 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.94 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
{
"name": "commons-by-codezela",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"db:push": "tsx scripts/db-push.ts",
"db:push:live": "DB_PROVIDER=supabase tsx scripts/db-push.ts",
"db:seed": "tsx scripts/db-seed.ts",
"db:seed:live": "DB_PROVIDER=supabase tsx scripts/db-seed.ts",
"db:reset": "tsx scripts/db-reset.ts",
"r2:check": "tsx scripts/r2-check.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1004.0",
"@base-ui/react": "^1.2.0",
"@tiptap/extension-code-block-lowlight": "^3.20.1",
"@tiptap/extension-color": "^3.20.1",
"@tiptap/extension-dropcursor": "^3.20.1",
"@tiptap/extension-heading": "^3.20.1",
"@tiptap/extension-highlight": "^3.20.1",
"@tiptap/extension-horizontal-rule": "^3.20.1",
"@tiptap/extension-image": "^3.20.1",
"@tiptap/extension-link": "^3.20.1",
"@tiptap/extension-placeholder": "^3.20.1",
"@tiptap/extension-subscript": "^3.20.1",
"@tiptap/extension-superscript": "^3.20.1",
"@tiptap/extension-table": "^3.20.1",
"@tiptap/extension-table-cell": "^3.20.1",
"@tiptap/extension-table-header": "^3.20.1",
"@tiptap/extension-table-row": "^3.20.1",
"@tiptap/extension-text-align": "^3.20.1",
"@tiptap/extension-text-style": "^3.20.1",
"@tiptap/extension-typography": "^3.20.1",
"@tiptap/extension-underline": "^3.20.1",
"@tiptap/pm": "^3.20.1",
"@tiptap/react": "^3.20.1",
"@tiptap/starter-kit": "^3.20.1",
"@types/pg": "^8.18.0",
"@vercel/speed-insights": "^2.0.0",
"better-auth": "^1.5.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.36.0",
"hast-util-to-html": "^9.0.5",
"iconoir-react": "^7.11.0",
"lowlight": "^3.3.0",
"lucide-react": "^0.577.0",
"mermaid": "^11.12.3",
"next": "16.1.6",
"next-themes": "^0.4.6",
"pg": "^8.20.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.0.1",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.2",
"shadcn": "^4.0.0",
"slugify": "^1.6.6",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tiptap-markdown": "^0.9.0",
"tw-animate-css": "^1.4.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.1.0",
"web-haptics": "^0.0.6",
"zod": "^4.3.6"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "5.9.3"
}
}