fitaiProto/apps/realtime/package.json
2026-04-03 03:25:11 +02:00

30 lines
738 B
JSON

{
"name": "@fitai/realtime",
"version": "1.0.0",
"private": true,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@clerk/backend": "^2.5.4",
"@fitai/database": "file:../../packages/database",
"@fitai/shared": "file:../../packages/shared",
"@socket.io/redis-adapter": "^8.3.0",
"dotenv": "^17.2.3",
"express": "^4.21.2",
"redis": "^4.7.0",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@types/express": "^4.17.23",
"@types/node": "^24.10.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}