-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 937 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 937 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": "kodin-studio",
"version": "1.0.0",
"description": "Kodin Studio — Remote VPS IDE",
"type": "module",
"scripts": {
"dev": "concurrently -k -n VITE,SERVER -c cyan,yellow \"vite\" \"node server/index.js\"",
"dev:frontend": "vite",
"dev:server": "node server/index.js",
"build": "vite build",
"preview": "vite preview",
"start": "NODE_ENV=production node server/index.js"
},
"dependencies": {
"@monaco-editor/react": "^4.6.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"fast-glob": "^3.3.2",
"fs-extra": "^11.2.0",
"node-ssh": "^13.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"simple-git": "^3.27.0",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.3",
"concurrently": "^9.1.0",
"vite": "^5.4.10"
}
}