khofo / package.json
Tantawi65
Add type:module to root and shared package.json
17c508c
raw
history blame contribute delete
659 Bytes
{
"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"
}