initial commit

This commit is contained in:
2025-09-05 18:06:18 -04:00
commit 7733ef2488
11 changed files with 2256 additions and 0 deletions

25
package.json Normal file
View File

@@ -0,0 +1,25 @@
{
"name": "@techniker-me/chatrooms",
"version": "0.0.0",
"description": "A collections of chatting rooms",
"repository": {
"type": "git",
"url": "https://git.techniker.me/techniker-me/chatrooms.git"
},
"license": "ISC",
"author": "Alexander Zinn",
"type": "module",
"main": "index.js",
"scripts": {
"dev:server": "npm run dev --workspace=server"
},
"workspaces": [
"server"
],
"devDependencies": {
"@types/node": "24.3.1",
"nodemon": "3.1.10",
"ts-node": "10.9.2",
"typescript": "5.9.2"
}
}