Rewrite with modern stack

This commit is contained in:
martin 2025-08-22 19:28:05 +02:00
commit 1f1f20ffd6
69 changed files with 17771 additions and 1589 deletions

35
frontend/package.json Normal file
View file

@ -0,0 +1,35 @@
{
"name": "@gaplace/frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@gaplace/shared": "file:../shared",
"next": "^15.5.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"socket.io-client": "^4.8.1",
"zustand": "^5.0.2",
"@tanstack/react-query": "^5.62.8",
"framer-motion": "^11.15.0",
"tailwindcss": "^3.4.17",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.4",
"clsx": "^2.1.1",
"tailwind-merge": "^2.5.6"
},
"devDependencies": {
"typescript": "^5.7.3",
"@types/node": "^22.10.6",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"eslint": "^8.57.1",
"eslint-config-next": "^15.5.0"
}
}