Some checks failed
Lint and Check Types / validations (push) Failing after 47s
- 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.
30 lines
698 B
JSON
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/*"
|
|
]
|
|
}
|