unreal-chat/package.json
Juan Sebastian Montoya c7911953df
Some checks failed
Lint and Check Types / validations (push) Failing after 47s
chore: update environment configuration and enhance Prisma integration
- Added MINIO_PORT to .env.example for Minio configuration.
- Updated package.json to include a script for Prisma generation.
- Modified turbo.json to ensure db:generate task is executed during build and dev processes.
- Updated CI workflow to run Prisma generate step.
- Adjusted imports in the API to reference the generated Prisma client correctly.
- Added .gitignore entry for Prisma client directory.
2025-05-06 18:36:47 -05:00

30 lines
698 B
JSON

{
"name": "ultimate-chat",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start:api": "turbo run start --filter=api",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"prisma:generate": "turbo run prisma:generate"
},
"devDependencies": {
"@types/node": "^22.13.9",
"dotenv-cli": "^8.0.0",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"ts-node": "^10.9.2",
"turbo": "^2.4.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.9.2",
"workspaces": [
"apps/*",
"packages/*"
]
}