Migrated the frontend from Alpine.js to SvelteKit with shared UI stores. Updated the project structure to use SvelteKit primitives for routing, state management, and form handling. Added a new round counter component and updated the project root to use a single Dockerfile. Updated dependencies including Alpine.js, Vite, and SvelteKit. Refined CSS and configuration files for the new frontend stack.
36 lines
892 B
JSON
36 lines
892 B
JSON
{
|
|
"name": "edh-stats-frontend",
|
|
"version": "2.2.0",
|
|
"description": "Frontend for EDH/Commander stats tracking application",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
|
|
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch"
|
|
},
|
|
"dependencies": {
|
|
"chart.js": "^4.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@sveltejs/adapter-static": "^3.0.10",
|
|
"@sveltejs/kit": "^2.57.1",
|
|
"autoprefixer": "^10.4.16",
|
|
"postcss": "^8.4.32",
|
|
"svelte": "^5.55.2",
|
|
"tailwindcss": "^3.4.0",
|
|
"vite": "^8.0.8"
|
|
},
|
|
"keywords": [
|
|
"sveltekit",
|
|
"tailwindcss",
|
|
"magic-the-gathering",
|
|
"edh",
|
|
"commander"
|
|
],
|
|
"author": "EDH Stats App",
|
|
"license": "MIT",
|
|
"main": "postcss.config.js"
|
|
}
|