Files
Palmr/package.json
Daniel Luiz Alves 0ff4661ccd feat: integrate Turborepo for improved build and development workflow
- Added Turborepo configuration in turbo.json to streamline task management for development, building, linting, and formatting.
- Updated package.json scripts to utilize Turborepo for running development and build tasks across applications.
- Included .pnpm-workspace.yaml to define workspace structure for managing multiple applications.
- Enhanced .gitignore to exclude Turborepo's cache directory, ensuring cleaner repository management.
- Adjusted development scripts in apps/docs and apps/web to specify port numbers for local development.
2025-07-02 15:44:07 -03:00

24 lines
709 B
JSON

{
"name": "palmr-monorepo",
"version": "3.1-beta",
"description": "Palmr monorepo with Husky configuration",
"private": true,
"packageManager": "pnpm@10.6.0",
"scripts": {
"prepare": "git config core.hooksPath .husky && husky",
"postinstall": "cd apps/server && npx prisma generate",
"dev": "turbo run dev",
"dev:ui": "turbo run dev --ui=tui",
"build": "turbo run build",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"format:check": "turbo run format:check",
"type-check": "turbo run type-check",
"validate": "turbo run validate"
},
"devDependencies": {
"husky": "^9.1.7",
"turbo": "^2.5.4"
}
}