Initial Node.js TypeScript service

This commit is contained in:
AppFactory Bot
2026-07-31 14:42:26 +00:00
commit 46f2f0b07e
7 changed files with 440 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{
"name": "csbot-prototype",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"express": "^4.18.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"typescript": "^5.4.0"
}
}