unreal-chat/apps/api/package.json
Juan Sebastian Montoya 18582c1fdc chore: add Keyv package for improved caching and key-value storage
- Added Keyv package (v5.3.1) to package.json for flexible key-value storage
- Updated package-lock.json with Keyv and related dependencies
- Simplified Dockerfile dependency management
- Removed unnecessary buffer and readable-stream package duplicates
2025-03-10 09:10:17 -05:00

45 lines
1.2 KiB
JSON

{
"name": "api",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "ts-node --test test/**/*.test.ts",
"start": "node dist/index.js",
"dev": "nodemon --delay 2000ms src/index.ts",
"prisma:generate": "prisma generate",
"prisma:migrate": "dotenv -e ../../.env.local -- prisma migrate dev",
"prisma:init": "dotenv -e ../../.env.local -- prisma migrate dev --name init",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cookie": "^11.0.2",
"@fastify/cors": "^11.0.0",
"@keyv/memcache": "^2.0.1",
"@prisma/client": "^6.4.1",
"dotenv": "^16.4.7",
"fastify": "^5.2.1",
"fastify-plugin": "^5.0.0",
"graphql": "^16.10.0",
"jsonwebtoken": "^9.0.2",
"keyv": "^5.3.1",
"mercurius": "^16.1.0",
"mercurius-codegen": "^6.0.1",
"minio": "^8.0.4",
"uuid": "^11.1.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"@types/jsonwebtoken": "^9.0.9",
"prisma": "^6.4.1",
"typescript": "5.8.2"
}
}