Files
website-collection/chess/package.json
T

18 lines
330 B
JSON
Raw Normal View History

2026-08-22 17:40:44 +00:00
{
2026-08-22 18:56:58 +00:00
"name": "chess-party",
2026-08-23 07:21:04 +00:00
"version": "2.0.0",
2026-08-22 17:40:44 +00:00
"private": true,
"type": "module",
2026-08-22 18:56:58 +00:00
"description": "Chess Party — AI and multiplayer chess",
2026-08-22 17:40:44 +00:00
"scripts": {
2026-08-23 06:46:18 +00:00
"start": "node server.js",
"dev": "node --watch server.js"
2026-08-22 18:56:58 +00:00
},
"engines": {
2026-08-23 06:46:18 +00:00
"node": ">=18.0.0"
2026-08-22 18:56:58 +00:00
},
"dependencies": {
"express": "^4.21.2"
2026-08-22 17:40:44 +00:00
}
2026-08-22 18:56:58 +00:00
}