-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.81 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.81 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
{
"name": "docs-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"dev:ws": "node server/websocket-server.js",
"dev:all": "npm run dev:ws & npm run dev",
"build": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write"
},
"dependencies": {
"@elastic/elasticsearch": "^9.2.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.1",
"@next/mdx": "^16.0.8",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@react-email/components": "^1.0.1",
"@supabase/supabase-js": "^2.87.1",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/react-query": "^5.90.12",
"@tiptap/extension-code-block-lowlight": "^3.13.0",
"@tiptap/extension-collaboration": "^3.0.0",
"@tiptap/extension-collaboration-cursor": "^3.0.0",
"@tiptap/extension-highlight": "^3.13.0",
"@tiptap/extension-placeholder": "^3.13.0",
"@tiptap/extension-table": "^3.13.0",
"@tiptap/extension-table-cell": "^3.13.0",
"@tiptap/extension-table-header": "^3.13.0",
"@tiptap/extension-table-row": "^3.13.0",
"@tiptap/extension-typography": "^3.13.0",
"@tiptap/pm": "^3.13.0",
"@tiptap/react": "^3.13.0",
"@tiptap/starter-kit": "^3.13.0",
"@types/mdx": "^2.0.13",
"@upstash/redis": "^1.35.8",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.26",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"ioredis": "^5.8.2",
"lib0": "^0.2.114",
"lowlight": "^3.3.0",
"lucide-react": "^0.560.0",
"mermaid": "^11.12.2",
"next": "16.0.8",
"next-auth": "^4.24.13",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.4.6",
"react": "19.2.1",
"react-dom": "19.2.1",
"rehype-highlight": "^7.0.2",
"rehype-pretty-code": "^0.14.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"resend": "^6.6.0",
"shiki": "^3.19.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tanstack-query": "^1.0.0",
"ws": "^8.18.3",
"y-prosemirror": "^1.3.7",
"y-protocols": "^1.0.6",
"y-websocket": "^3.0.0",
"yjs": "^13.6.27"
},
"devDependencies": {
"@biomejs/biome": "2.2.0",
"@next/bundle-analyzer": "^16.0.10",
"@tailwindcss/postcss": "^4",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5"
}
}