-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 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
52
53
54
55
{
"name": "collab-code",
"private": true,
"version": "1.0.0",
"license": "MIT",
"protocolVersion": 1,
"type": "module",
"scripts": {
"dev": "vite",
"dev:server": "node server/index.cjs",
"dev:all": "concurrently \"npm run dev:server\" \"npm run dev\"",
"build": "tsc -b && vite build",
"lint": "eslint .",
"typecheck": "tsc -b --noEmit",
"format": "prettier --write .",
"prettier-check": "prettier --check .",
"preview": "vite preview",
"start:server": "node server/index.cjs",
"verify": "npm run prettier-check && npm run lint && npm run typecheck && npm run build"
},
"dependencies": {
"@monaco-editor/react": "^4.7.0",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"dompurify": "^3.3.3",
"jszip": "^3.10.1",
"marked": "^14.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"ws": "^8.18.0",
"y-indexeddb": "^9.0.12",
"y-monaco": "^0.1.6",
"y-protocols": "^1.0.7",
"y-websocket": "^2.1.0",
"yjs": "^13.6.29"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@tailwindcss/vite": "^4.2.4",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.1.2",
"eslint": "^9.25.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"prettier": "^3.8.3",
"tailwindcss": "^4.2.4",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^8.0.9"
}
}