Files
PrivateChat/server/package.json

31 lines
777 B
JSON

{
"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",
"start": "node dist/index.js"
},
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/jwt": "^10.0.0",
"@fastify/static": "^9.1.0",
"@fastify/websocket": "^11.2.0",
"@simplewebauthn/server": "^13.3.0",
"dotenv": "^17.4.2",
"fastify": "^5.8.4",
"ioredis": "^5.10.1",
"libreoffice-convert": "^1.8.1",
"ws": "^8.20.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.6.0",
"@types/ws": "^8.18.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}