first commit

This commit is contained in:
2026-01-02 15:49:01 +03:00
commit 4348f76a7c
80 changed files with 10133 additions and 0 deletions

38
apps/server/package.json Normal file
View File

@@ -0,0 +1,38 @@
{
"name": "q-buffer-server",
"private": true,
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"dependencies": {
"axios": "^1.7.7",
"axios-cookiejar-support": "^5.0.2",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.3.1",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"multer": "^1.4.5-lts.1",
"parse-torrent": "^9.1.5",
"pino": "^9.3.2",
"socket.io": "^4.7.5",
"tough-cookie": "^4.1.4",
"webtorrent": "^2.4.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.12",
"@types/node": "^20.14.9",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}