-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.72 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
{
"name": "code-with-me",
"version": "2.0.0",
"description": "Real-time collaborative code editor with 20+ languages and instant execution",
"main": "server/index.js",
"scripts": {
"start": "node server/index.js",
"dev": "npm run build && node server/index.js",
"build": "vite build",
"build:watch": "vite build --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["code-editor", "collaborative", "real-time", "ide", "online-compiler"],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@codemirror/autocomplete": "^6.18.6",
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-cpp": "^6.0.2",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-go": "^6.0.1",
"@codemirror/lang-html": "^6.4.9",
"@codemirror/lang-java": "^6.0.1",
"@codemirror/lang-javascript": "^6.2.4",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/lang-php": "^6.0.1",
"@codemirror/lang-python": "^6.1.7",
"@codemirror/lang-rust": "^6.0.1",
"@codemirror/lang-sql": "^6.8.0",
"@codemirror/language": "^6.11.0",
"@codemirror/lint": "^6.8.5",
"@codemirror/search": "^6.5.11",
"@codemirror/state": "^6.5.2",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.8",
"@lezer/highlight": "^1.2.1",
"axios": "^1.13.1",
"codemirror": "^6.0.1",
"compression": "^1.8.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"vite": "^6.3.5",
"ws": "^8.18.3",
"y-codemirror.next": "^0.3.5",
"y-websocket": "^2.1.0",
"yjs": "^13.6.27"
}
}