update
Some checks failed
Deploy / deploy (push) Failing after 4m2s

This commit is contained in:
Никита Круглицкий
2025-10-09 22:29:42 +06:00
parent 6ada2c3fbd
commit bb48e52a99
14 changed files with 1234 additions and 15 deletions

View File

@@ -1,19 +1,33 @@
{
"name": "server",
"scripts": {
"start": "ts-node --transpile-only index.ts"
"start": "ts-node --transpile-only server.ts",
"db:deploy": "npx prisma migrate deploy && npx prisma generate"
},
"packageManager": "yarn@4.10.3",
"dependencies": {
"@lucia-auth/adapter-prisma": "^4.0.1",
"@prisma/client": "^6.17.0",
"@trpc/server": "^11.6.0",
"bcrypt": "^6.0.0",
"consola": "^3.4.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"lucia": "^3.2.2",
"mediasoup": "^3.19.3",
"socket.io": "^4.8.1"
"prisma": "^6.17.0",
"socket.io": "^4.8.1",
"ws": "^8.18.3",
"zod": "^4.1.12"
},
"devDependencies": {
"@antfu/eslint-config": "^5.4.1",
"@types/bcrypt": "^6",
"@types/cookie-parser": "^1",
"@types/express": "^5.0.3",
"@types/ws": "^8",
"eslint": "^9.36.0",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"