File size: 659 Bytes
a7b6b46
 
 
17c508c
a7b6b46
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "name": "mummy-card-game",
  "version": "1.0.0",
  "type": "module",
  "description": "Multiplayer Egyptian-themed card game with real-time gameplay",
  "scripts": {
    "install:all": "cd client && npm install && cd ../server && npm install",
    "build:client": "cd client && npm run build",
    "build:server": "cd server && npm run build",
    "build": "npm run build:client && npm run build:server",
    "start": "cd server && npm start",
    "dev": "cd server && npm run dev"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "keywords": [
    "card-game",
    "multiplayer",
    "socket.io",
    "react",
    "typescript"
  ],
  "license": "MIT"
}