feat: initial commit at project root

This commit is contained in:
Hamza-Ayed
2026-05-29 01:06:47 +03:00
commit 87ec54bbd7
22 changed files with 1737 additions and 0 deletions

15
package.json Normal file
View File

@@ -0,0 +1,15 @@
{
"name": "intaleq-voice-call",
"version": "1.0.0",
"description": "Voice Call Signaling Backend in Node.js for Intaleq",
"main": "cmd/server/main.js",
"type": "module",
"scripts": {
"start": "node cmd/server/main.js",
"dev": "node cmd/server/main.js"
},
"dependencies": {
"mysql2": "^3.9.2",
"ws": "^8.16.0"
}
}