Build Jellomator MVP
All checks were successful
docker / build-and-push (push) Successful in 49s

This commit is contained in:
Space-Banane
2026-05-20 20:36:28 +02:00
parent ce0dc0880c
commit 3991a01ec7
18 changed files with 3830 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "jellomator",
"private": true,
"version": "1.0.0",
"type": "module",
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"scripts": {
"dev": "concurrently \"npm:dev:frontend\" \"npm:dev:backend\"",
"dev:frontend": "vite",
"dev:backend": "uvicorn backend.main:app --host 0.0.0.0 --port 6363 --reload",
"build": "npm run build:frontend",
"build:frontend": "vite build"
},
"devDependencies": {
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"concurrently": "^9.1.2",
"vite": "^5.4.19"
}
}