diff --git a/Makefile b/Makefile index bfb691d..8c3a00e 100644 --- a/Makefile +++ b/Makefile @@ -30,7 +30,7 @@ dev: @npx concurrently \ --names "Django,Tailwind,Vite" \ --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" \ "npm run dev" diff --git a/package.json b/package.json index da578c9..5855669 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,21 @@ { + "name": "timetracker-frontend", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build" + }, "devDependencies": { "@tailwindcss/forms": "^0.5.7", "@tailwindcss/typography": "^0.5.13", "concurrently": "^8.2.2", "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": { "flowbite": "^2.4.1"