-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 2 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
{
"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/*"
],
"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": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"@vercel/ncc": "0.36.1",
"concurrently": "^7.6.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"release": {
"branches": [
"main"
]
}
}