Initial commit

This commit is contained in:
2026-03-13 16:01:39 -04:00
commit 27e8c9a6fe
22 changed files with 8681 additions and 0 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "arcane-duels",
"version": "1.0.0",
"private": true,
"description": "A multiplayer trading card game with LAN support",
"scripts": {
"server": "node server/index.js",
"client": "npm run dev --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"install:all": "npm install && cd client && npm install"
},
"dependencies": {
"express": "^4.18.2",
"socket.io": "^4.7.4",
"cors": "^2.8.5",
"uuid": "^9.0.0"
},
"devDependencies": {
"concurrently": "^8.2.2"
}
}