khofo / server /package.json
Tantawi65
Fix TypeScript build: add ESM type, fix rootDir for shared
b0b8ff0
raw
history blame contribute delete
594 Bytes
{
"name": "mummy-card-game-server",
"version": "1.0.0",
"type": "module",
"description": "Multiplayer Mummy Card Game Server",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"cors": "^2.8.5",
"express": "^4.18.2",
"socket.io": "^4.7.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/express": "^4.17.18",
"@types/node": "^20.8.0",
"@types/uuid": "^9.0.3",
"tsx": "^4.1.0",
"typescript": "^5.2.2"
}
}