-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.02 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
37
{
"name": "@liveblocks-examples/nextjs-yjs-codemirror",
"description": "This example shows how to build a collaborative text editor with Liveblocks, Yjs, CodeMirror, and Next.js.",
"license": "Apache-2.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@codemirror/lang-javascript": "^6.1.9",
"@liveblocks/client": "^1.4.0",
"@liveblocks/node": "^1.4.0",
"@liveblocks/react": "^1.4.0",
"@liveblocks/yjs": "^1.4.0",
"@types/node": "18.11.18",
"@types/react": "18.0.27",
"@types/react-dom": "18.0.10",
"codemirror": "^6.0.1",
"eslint": "8.33.0",
"eslint-config-next": "13.1.6",
"next": "13.4.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "4.9.5",
"y-codemirror.next": "^0.3.2",
"yjs": "^13.6.4"
},
"devDependencies": {
"@iconify/react": "^4.1.0",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.3"
}
}