-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.01 KB
/
package.json
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
{
"name": "@liveblocks-examples/nextjs-comments-overlay",
"description": "This example shows how to display comments overlaid on any website with Liveblocks and Next.js.",
"licence": "Apache-2.0",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@liveblocks/client": "^2.2.1",
"@liveblocks/node": "^2.2.1",
"@liveblocks/react": "^2.2.1",
"@liveblocks/react-ui": "^2.2.1",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-portal": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@types/node": "20.4.5",
"@types/react-dom": "18.2.7",
"clsx": "^2.0.0",
"eslint-config-next": "^14.2.4",
"framer-motion": "^10.16.4",
"next": "14.1.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.11"
},
"devDependencies": {
"@types/react": "^18.3.3",
"prettier": "^3.3.2",
"typescript": "^5.4.5"
}
}