Integrate Svelte more

This commit is contained in:
2026-01-16 20:26:32 +01:00
parent 1ba204fbdc
commit c684d833ef
2 changed files with 13 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ dev:
@npx concurrently \ @npx concurrently \
--names "Django,Tailwind,Vite" \ --names "Django,Tailwind,Vite" \
--prefix-colors "blue,green,yellow" \ --prefix-colors "blue,green,yellow" \
"poetry run python -Wa manage.py runserver" \ "uv run python -Wa manage.py runserver" \
"npx tailwindcss -i ./common/input.css -o ./games/static/base.css --watch" \ "npx tailwindcss -i ./common/input.css -o ./games/static/base.css --watch" \
"npm run dev" "npm run dev"
+12 -1
View File
@@ -1,10 +1,21 @@
{ {
"name": "timetracker-frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build"
},
"devDependencies": { "devDependencies": {
"@tailwindcss/forms": "^0.5.7", "@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13", "@tailwindcss/typography": "^0.5.13",
"concurrently": "^8.2.2", "concurrently": "^8.2.2",
"npm-check-updates": "^16.14.20", "npm-check-updates": "^16.14.20",
"tailwindcss": "^3.4.14" "@sveltejs/vite-plugin-svelte": "^3.0.0",
"svelte": "^4.2.8",
"tailwindcss": "^3.4.14",
"vite": "^5.0.8"
}, },
"dependencies": { "dependencies": {
"flowbite": "^2.4.1" "flowbite": "^2.4.1"