| 12345678910111213141516171819202122 |
- {
- "name": "chess-io",
- "author": "windhamdavid",
- "description": "real-time chess over socket.io",
- "version": "0.1.0",
- "private": true,
- "type": "module",
- "engines": {
- "node": ">=20"
- },
- "scripts": {
- "start": "node server.js",
- "dev": "node --watch --env-file-if-exists=.env server.js",
- "lint": "node --check server.js"
- },
- "dependencies": {
- "express": "^5.2.1",
- "pug": "^3.0.3",
- "socket.io": "^4.8.3",
- "winston": "^3.19.0"
- }
- }
|