-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.58 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
{
"name": "@liveblocks-examples/nextjs-comments-tiptap",
"description": "This example shows how to add comments to a collaborative text editor with Liveblocks, Tiptap, and Next.js.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@liveblocks/client": "^3.0.0",
"@liveblocks/node": "^3.0.0",
"@liveblocks/node-prosemirror": "^3.2.1",
"@liveblocks/react": "^3.2.1",
"@liveblocks/react-tiptap": "^3.2.1",
"@liveblocks/react-ui": "^3.2.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-select": "^2.1.4",
"@radix-ui/react-tabs": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.2",
"@tiptap/extension-placeholder": "^2.1.12",
"@tiptap/extension-task-item": "^2.0.4",
"@tiptap/extension-task-list": "^2.0.4",
"@tiptap/extension-text-align": "^2.0.4",
"@tiptap/extension-typography": "^2.0.4",
"@tiptap/extension-youtube": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/react": "^2.0.4",
"@tiptap/starter-kit": "^2.0.4",
"@types/node": "20.3.1",
"@types/react-dom": "18.2.5",
"@types/uuid": "^10.0.0",
"clsx": "^2.0.0",
"nanoid": "^5.0.1",
"next": "^15.0.0",
"react": "^18.3.0",
"react-dom": "^18.3.0",
"react-error-boundary": "^4.0.11",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/react": "^18.3.3",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.13",
"typescript": "^5.4.5"
}
}