-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 980 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 980 Bytes
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
{
"name": "@liveblocks-examples/nextjs-ai-chats",
"description": "This example shows how to build a collaborative AI app with Liveblocks and Next.js.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@codesandbox/sandpack-react": "^2.20.0",
"@liveblocks/client": "^3.8.0-next3",
"@liveblocks/node": "^3.8.0-next3",
"@liveblocks/react": "^3.8.0-next3",
"@liveblocks/react-ui": "^3.8.0-next3",
"@monaco-editor/react": "^4.7.0",
"@types/node": "^18.11.18",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"next": "^14.2.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^6.0.0",
"typescript": "^5.2.2"
},
"devDependencies": {
"autoprefixer": "^10.4.19",
"postcss": "^8.4.38",
"prettier": "^3.6.2",
"tailwindcss": "^3.4.4"
}
}