mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
- 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.
24 lines
709 B
JSON
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"
|
|
}
|
|
} |