initialize server project with basic structure and dependencies

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-05-02 14:30:20 +02:00
commit 7e2ba65c54
7 changed files with 851 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/server.js",
"test": "tsx --test src/server.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"ws": "^8.20.0"
},
"devDependencies": {
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
}
}