-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "realtime-collaborative-code-editor",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"setup:sandbox": "node scripts/setup-sandbox.js",
"start": "node server.js"
},
"dependencies": {
"codemirror": "^5.65.20",
"compression": "^1.8.1",
"express": "^4.21.2",
"helmet": "^8.1.0",
"level": "^10.0.0",
"react": "^18.2.0",
"react-avatar": "^5.0.4",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.8.2",
"recoil": "^0.7.7",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"uuid": "^11.1.0",
"ws": "^8.19.0",
"y-codemirror": "^3.0.1",
"y-leveldb": "^0.2.0",
"y-websocket": "^1.5.4",
"yjs": "^13.6.29"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.33.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"vite": "^7.1.2"
}
}