refactor: migrate from Next.js to SolidJS and GraphQL

- Converted web application from Next.js to SolidJS with Vite
- Replaced React components with SolidJS components
- Implemented GraphQL client using URQL
- Added authentication, room, and chat components
- Updated project structure and configuration files
- Removed unnecessary Next.js and docs-related files
- Added Docker support for web and API applications
This commit is contained in:
Juan Sebastián Montoya 2025-03-04 01:08:52 -05:00
parent 8f3aa2fc26
commit 16731409df
81 changed files with 13585 additions and 1163 deletions

View file

@ -4,9 +4,20 @@
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types"
"check-types": "turbo run check-types",
"api:dev": "turbo run dev --filter=api",
"web:dev": "turbo run dev --filter=web",
"api:build": "turbo run build --filter=api",
"web:build": "turbo run build --filter=web",
"api:start": "turbo run start --filter=api",
"web:start": "turbo run start --filter=web",
"prisma:generate": "cd apps/api && npm run prisma:generate",
"prisma:migrate": "cd apps/api && npm run prisma:migrate",
"prisma:studio": "cd apps/api && npm run prisma:studio",
"prisma:init": "cd apps/api && npm run prisma:init"
},
"devDependencies": {
"prettier": "^3.5.3",