30 lines
740 B
JSON
30 lines
740 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.0.0",
|
|
"@fastify/websocket": "^11.2.0",
|
|
"@simplewebauthn/server": "^13.2.3",
|
|
"dotenv": "^17.3.1",
|
|
"fastify": "^5.8.2",
|
|
"ioredis": "^5.10.0",
|
|
"ws": "^8.19.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^25.3.5",
|
|
"@types/ws": "^8.18.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3"
|
|
}
|
|
}
|