18 lines
472 B
JSON
18 lines
472 B
JSON
{
|
|
"name": "chessnut-server",
|
|
"version": "0.1.0",
|
|
"description": "Lightweight chess server with rooms for 2 players, real-time via Socket.IO",
|
|
"main": "server.js",
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"dev": "NODE_ENV=development node server.js"
|
|
},
|
|
"keywords": ["chess","socket.io","rooms","docker"],
|
|
"author": "Didictateur",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"socket.io": "^4.7.2",
|
|
"uuid": "^9.0.0"
|
|
}
|
|
}
|