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>
17 lines
515 B
JSON
17 lines
515 B
JSON
{
|
|
"name": "@rps-royale/contracts",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"compile": "hardhat compile",
|
|
"test": "hardhat test",
|
|
"node": "hardhat node",
|
|
"deploy:local": "hardhat ignition deploy ./ignition/modules/RPSArena.ts --network localhost",
|
|
"deploy:sepolia": "hardhat ignition deploy ./ignition/modules/RPSArena.ts --network sepolia"
|
|
},
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
|
|
"hardhat": "^2.22.0",
|
|
"typescript": "^5.6.0"
|
|
}
|
|
}
|