- Bump @modelcontextprotocol/sdk from 1.0.4 to 1.29.0 in runner-template (1.0.4 has no McpServer or StreamableHTTPServerTransport — file not found at runtime). - Bump zod to 3.25.76 across workspace to satisfy modern SDK peer dep. - Split OAUTH_ISSUER (canonical, host-reachable) from CONTROL_PLANE_URL (container-reachable for JWKS). Runner verifies iss against OAUTH_ISSUER; fetches JWKS from CONTROL_PLANE_URL. Both API and runner now agree on http://localhost:4000/oauth as the issuer in dev. - Move postgres host port 5432 to 5440, redis 6379 to 6390 to avoid collisions with native installs on the dev machine. - Move web from 3000 to 3001 (3000 occupied by Gitea on dev machine). - Drop pino-pretty transport from API to avoid runtime require of an unbundled dep. - Cast build_logs.level (varchar) to BuildEvent's literal union in WS replay path. - Remove unused reqBase helper in oauth.ts.
33 lines
747 B
JSON
33 lines
747 B
JSON
{
|
|
"name": "@bmm/web",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --port 3001",
|
|
"build": "next build",
|
|
"start": "next start --port 3001",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"@bmm/types": "workspace:*",
|
|
"clsx": "2.1.1",
|
|
"geist": "1.3.1",
|
|
"lucide-react": "0.469.0",
|
|
"next": "15.1.3",
|
|
"react": "19.0.0",
|
|
"react-dom": "19.0.0",
|
|
"tailwind-merge": "2.5.5",
|
|
"zod": "3.25.76"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "4.0.0-beta.7",
|
|
"@types/node": "22.10.2",
|
|
"@types/react": "19.0.2",
|
|
"@types/react-dom": "19.0.2",
|
|
"postcss": "8.4.49",
|
|
"tailwindcss": "4.0.0-beta.7",
|
|
"typescript": "5.7.2"
|
|
}
|
|
}
|