converted to ts

This commit is contained in:
2026-02-15 11:45:50 +05:30
parent 6375434aaa
commit 4bbba45642
11 changed files with 882 additions and 232 deletions
+10 -1
View File
@@ -2,13 +2,22 @@
"name": "cupidserver",
"version": "1.0.0",
"description": "Matchmaking daemon for Cupid mirror",
"main": "app.js",
"main": "dist/app.js",
"scripts": {
"start": "node dist/app.js",
"build": "tsc",
"dev": "tsc && node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.24",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}