rps-royale/apps/web/package.json
Ubuntu 64e8fb6c49 Initial commit: monorepo structure, smart contract, server, and Phaser frontend
Phase 0 foundation:
- Docker Compose with PostgreSQL, Redis, Hardhat node
- RPSArena.sol commit-reveal smart contract with tests
- Node.js + Socket.io server with matchmaking and match state machine
- Next.js + Phaser 3 frontend with Boot, Lobby, Arena, Result scenes
- Nginx Proxy Manager integration planned for jeu.cosmolan.fr

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-24 02:14:42 +00:00

32 lines
758 B
JSON

{
"name": "@rps-royale/web",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@rps-royale/shared": "workspace:*",
"howler": "^2.2.4",
"next": "^15.1.0",
"phaser": "^3.86.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"ethers": "^6.13.0",
"socket.io-client": "^4.8.0"
},
"devDependencies": {
"@types/howler": "^2.2.12",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.0"
}
}