unreal-chat/apps/api/package.json
Juan Sebastian Montoya 7d4796c8eb chore: update package.json and TypeScript configuration across multiple packages
- Added linting and type-checking scripts to package.json for api, web, and ui packages.
- Updated ESLint configuration to ignore specific directories and added global window variable.
- Modified TypeScript configuration for ui package to exclude turbo generators.
- Refactored Button, Card, and Code components to use props for better readability and consistency.
2025-05-06 00:35:39 -05:00

47 lines
1.3 KiB
JSON

{
"name": "api",
"version": "1.0.0",
"description": "This project was bootstrapped with Fastify-CLI.",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint . --max-warnings 0",
"check-types": "tsc --noEmit",
"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 -c -- prisma migrate dev",
"prisma:init": "dotenv -e ../../.env -c -- 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"
}
}