mirror of
https://github.com/lucasrcsantana/story-generator.git
synced 2025-12-16 21:37:51 +00:00
- Implementa Dockerfile com multi-stage build - Configura pipeline no Gitea Actions - Adiciona integração com Redis - Implementa healthchecks - Configura registry no Gitea minor: novas funcionalidades de infraestrutura
50 lines
1.5 KiB
JSON
50 lines
1.5 KiB
JSON
{
|
|
"name": "vite-react-typescript-starter",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
|
|
"docker:build": "docker build -t historias-magicas .",
|
|
"docker:run": "docker run -p 3000:3000 historias-magicas",
|
|
"deploy:prod": "docker-compose up -d --build"
|
|
},
|
|
"dependencies": {
|
|
"@radix-ui/react-accordion": "^1.2.2",
|
|
"@radix-ui/react-tabs": "^1.1.2",
|
|
"@supabase/supabase-js": "^2.39.7",
|
|
"@tanstack/react-query": "^5.62.8",
|
|
"clsx": "^2.1.1",
|
|
"lucide-react": "^0.344.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "^7.54.2",
|
|
"react-router-dom": "^6.28.0",
|
|
"recharts": "^2.15.0",
|
|
"resend": "^3.2.0",
|
|
"tailwind-merge": "^2.5.5"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.9.1",
|
|
"@types/react": "^18.3.17",
|
|
"@types/react-dom": "^18.3.5",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"autoprefixer": "^10.4.20",
|
|
"eslint": "^9.9.1",
|
|
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
|
"eslint-plugin-react-refresh": "^0.4.11",
|
|
"globals": "^15.9.0",
|
|
"postcss": "^8.4.49",
|
|
"supabase": "^2.1.1",
|
|
"tailwindcss": "^3.4.17",
|
|
"typescript": "^5.5.3",
|
|
"typescript-eslint": "^8.3.0",
|
|
"vite": "^5.4.2"
|
|
}
|
|
}
|