Relay no longer needs a single merged schema.graphql: each project in relay.config.json now reads the split graphql/*.graphql files directly via `schema` (base.graphql) plus `schemaExtensions`. gqlgen already consumed the split files, so the merge step only fed Relay and the optional IDE GraphQL extension. Remove the merge machinery (contrib/merge-graphql-schema.sh, the RELAY_SCHEMAS make rules, and the gitignore entry) and drop the graphql-config files (apps/trust/graphql.config.yml and the root package.json graphql field); the Relay extension provides schema-aware language features from relay.config.json on its own. relay-compiler keeps generated artifacts in sync (stale ones are removed automatically), so the relay npm script just runs the local relay-compiler and the make target delegates to it. Signed-off-by: Émile Ré <emile@probo.com>
45 lines
976 B
JSON
45 lines
976 B
JSON
{
|
|
"name": "probo",
|
|
"description": "Probo monorepo containing applications and shared packages",
|
|
"engines": {
|
|
"node": "^24.0.0",
|
|
"npm": "^11.8.0"
|
|
},
|
|
"workspaces": [
|
|
"apps/*",
|
|
"packages/*",
|
|
"examples/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"dev": "turbo run dev",
|
|
"lint": "turbo run lint",
|
|
"check": "turbo run check",
|
|
"relay": "relay-compiler"
|
|
},
|
|
"devDependencies": {
|
|
"relay-compiler": "^21.0.1",
|
|
"turbo": "^2.9.14"
|
|
},
|
|
"overrides": {
|
|
"brace-expansion": "^5.0.5",
|
|
"minimatch@3": {
|
|
"brace-expansion": "^1.1.11"
|
|
},
|
|
"minimatch@9": "^9.0.9",
|
|
"@langchain/classic": "^1.0.27",
|
|
"langsmith": "^0.5.19",
|
|
"handlebars": "4.7.9",
|
|
"@langchain/community": "^1.1.25",
|
|
"lodash": "^4.18.1",
|
|
"lodash-es": "^4.18.1",
|
|
"axios": "^1.16.0",
|
|
"uuid": "^14.0.0"
|
|
},
|
|
"license": "MIT",
|
|
"packageManager": "npm@11.8.0",
|
|
"dependencies": {
|
|
"react-dom": "^19.2.7"
|
|
}
|
|
}
|