This commit is contained in:
2025-09-01 22:25:49 +10:00
parent 1e3405d51d
commit 95eb87cc24
23 changed files with 2483 additions and 7 deletions

20
frontend/package.json Normal file
View File

@@ -0,0 +1,20 @@
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "^6.1.1",
"@tsconfig/svelte": "^5.0.4",
"svelte": "^5.38.1",
"svelte-check": "^4.3.1",
"typescript": "~5.8.3",
"vite": "^7.1.2"
}
}