mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
- Added new development scripts in package.json for specific applications (web, server, docs) to streamline the development process using Turborepo. - Updated the name of the frontend application in apps/web/package.json to align with the new naming convention.
27 lines
948 B
JSON
27 lines
948 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 --ui=tui",
|
|
"dev:web": "turbo run dev --filter=palmr-web --ui=tui",
|
|
"dev:server": "turbo run dev --filter=palmr-api --ui=tui",
|
|
"dev:docs": "turbo run dev --filter=palmr-docs --ui=tui",
|
|
"dev:fullstack": "turbo run dev --filter=palmr-web --filter=palmr-api --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"
|
|
}
|
|
} |