Switch package manager from pnpm to bun for faster dependency installation and better monorepo support. Remove pnpm-specific configuration files and update all scripts to use bun commands.
26 lines
757 B
JSON
26 lines
757 B
JSON
{
|
|
"name": "enchun-monorepo",
|
|
"private": true,
|
|
"packageManager": "bun@1.3.3",
|
|
"scripts": {
|
|
"dev": "turbo run dev --parallel",
|
|
"dev:stop": "echo 'Stopping dev servers...' && pkill -f 'astro dev' && pkill -f 'next dev' && echo 'Dev servers stopped' || echo 'No dev servers were running'",
|
|
"build": "turbo run build",
|
|
"lint": "turbo run lint",
|
|
"test": "turbo run test",
|
|
"typecheck": "turbo run typecheck",
|
|
"bmad:refresh": "bmad-method install -f -i codex",
|
|
"bmad:list": "bmad-method list:agents",
|
|
"bmad:validate": "bmad-method validate"
|
|
},
|
|
"devDependencies": {
|
|
"eslint-plugin-react-hooks": "^7.0.1",
|
|
"turbo": "^2.0.5"
|
|
},
|
|
"workspaces": [
|
|
"apps/frontend",
|
|
"apps/backend",
|
|
"packages/*"
|
|
]
|
|
}
|