Files
PrivateChat/server/package.json

30 lines
794 B
JSON
Raw Normal View History

2026-03-09 19:35:08 +01:00
{
"name": "private-chat-server",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "node node_modules/tsx/dist/cli.mjs watch src/index.ts",
"build": "node node_modules/typescript/bin/tsc -p tsconfig.json",
2026-03-11 00:26:49 +01:00
"start": "node dist/index.js",
"setup-whisper": "python3 -m pip install -r requirements-whisper.txt"
2026-03-09 19:35:08 +01:00
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.0.0",
"@fastify/static": "^9.0.0",
"@fastify/websocket": "^11.2.0",
"@simplewebauthn/server": "^13.2.3",
"dotenv": "^17.3.1",
"fastify": "^5.8.2",
"ioredis": "^5.10.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.5",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}