Files
probo/package.json
Émile Ré 74d7d3ff25 Upgrade Relay to v20.1.1 and unify compiler config
Consolidate the two per-app relay configs (console and trust)
into a single multi-project relay.config.json at the repo root
with three projects: core, iam, and trust. Bump all relay
packages from v19 to v20.1.1 and move relay-compiler to the
root devDependencies. Replace per-workspace relay scripts with
a single root-level npm run relay command and update the
GNUmakefile, CI workflows, and docs accordingly.

Signed-off-by: Émile Ré <emile@getprobo.com>
2026-04-14 16:04:11 +04:00

50 lines
1.1 KiB
JSON

{
"name": "probo",
"description": "Probo monorepo containing applications and shared packages",
"engines": {
"node": "v24.11.1",
"npm": "11.8.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"check": "turbo run check",
"relay-clean": "find apps -type d -name __generated__ -exec rm -rf {} +",
"relay-compile": "npx relay-compiler",
"relay": "npm run relay-clean && npm run relay-compile"
},
"devDependencies": {
"relay-compiler": "^20.1.1",
"turbo": "^2.5.3"
},
"graphql": {
"schema": "./pkg/server/api/console/v1/schema.graphql"
},
"overrides": {
"brace-expansion": "^5.0.5",
"minimatch@3": {
"brace-expansion": "^1.1.11"
},
"minimatch@9": "^9.0.9",
"langsmith": "^0.5.0",
"handlebars": "4.7.9",
"@langchain/community": "^1.1.25",
"lodash": "^4.18.1",
"lodash-es": "^4.18.1",
"axios": "^1.15.0"
},
"license": "MIT",
"packageManager": "npm@11.8.0",
"volta": {
"node": "24.4.0"
},
"dependencies": {
"react-dom": "^19.2.1"
}
}