rps-royale/apps/server/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

31 lines
752 B
JSON

{
"name": "@rps-royale/server",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "tsc",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"db:generate": "prisma generate",
"db:migrate": "prisma migrate dev",
"db:seed": "tsx src/db/seed.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@prisma/client": "^5.20.0",
"@rps-royale/shared": "workspace:*",
"cors": "^2.8.5",
"ethers": "^6.13.0",
"express": "^4.21.0",
"ioredis": "^5.4.0",
"socket.io": "^4.8.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^20.0.0",
"prisma": "^5.20.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
}
}