learning_ai_common_plat/__LOCAL_LLMs/dashboard/package.json
saravanakumardb1 6ba86e0bf4 fix: replace corepack pnpm with pnpm in pretest/predev scripts
Node 25 removed corepack as a built-in. Replace all 'corepack pnpm'
invocations with direct 'pnpm' calls since pnpm is installed globally.

Affected: platform-service, tracker-web, blob, testing, LLM dashboard
2026-03-19 19:57:16 -07:00

36 lines
907 B
JSON

{
"name": "dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"predev": "pnpm --dir ../.. --filter @bytelyst/llm-router build",
"prebuild": "pnpm --dir ../.. --filter @bytelyst/llm-router build",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@types/react-syntax-highlighter": "^15.5.13",
"cron-parser": "^5.5.0",
"fuse.js": "^7.1.0",
"idb": "^8.0.3",
"lucide-react": "^0.575.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^16.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}