feat: starting point for live sync

This commit is contained in:
2025-07-08 14:36:34 +02:00
parent 05ad4128e4
commit da90cfa891
3 changed files with 856 additions and 26 deletions

View File

@ -7,6 +7,7 @@
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"start": "node server.js",
"prepare": "svelte-kit sync || echo ''",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
@ -38,6 +39,9 @@
},
"dependencies": {
"@sveltejs/adapter-node": "^5.2.12",
"@sveltejs/adapter-static": "^3.0.8"
"@sveltejs/adapter-static": "^3.0.8",
"express": "^5.1.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1"
}
}