-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
47 lines (47 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@apollo/federation-subgraph-compatibility-monorepo",
"description": "Monorepo for Apollo Federation Subgraph Compatibility Testing packages",
"bugs": {
"url": "https://github.com/apollographql/apollo-federation-subgraph-compatibility/issues"
},
"homepage": "https://github.com/apollographql/apollo-federation-subgraph-compatibility#readme",
"author": "Apollo <[email protected]>",
"license": "MIT",
"workspaces": [
"packages/*",
"packages/subgraphs/*"
],
"engines": {
"node": ">=18.0.0",
"npm": ">=8.6.0"
},
"scripts": {
"build": "tsc --build tsconfig.json && npm run package",
"clean": "rm -rf packages/*/dist packages/*/tsconfig.tsbuildinfo",
"compatibility:report": "node packages/script/dist/generateReportCommand.js",
"compatibility:test": "node packages/script/dist/compatibilityTestCommand.js",
"lint": "eslint .",
"package": "cp implementations/_template_library_/products.graphql packages/compatibility && concurrently \"npm:package-subgraphs:*\"",
"package-subgraphs:inventory": "ncc build packages/subgraphs/inventory/index.js --source-map --out packages/compatibility/dist/subgraphs/inventory && cp packages/subgraphs/inventory/Dockerfile packages/subgraphs/inventory/inventory.graphql packages/compatibility/dist/subgraphs/inventory",
"package-subgraphs:users": "ncc build packages/subgraphs/users/index.js --source-map --out packages/compatibility/dist/subgraphs/users && cp packages/subgraphs/users/Dockerfile packages/subgraphs/users/users.graphql packages/compatibility/dist/subgraphs/users",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"postinstall": "npm run build"
},
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vercel/ncc": "0.38.1",
"concurrently": "8.2.2",
"eslint": "8.57.0",
"eslint-plugin-import": "2.29.1",
"prettier": "3.3.3",
"typescript": "5.5.4"
},
"release": {
"branches": [
"main"
]
}
}