-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
32 lines (32 loc) · 1.1 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
{
"name": "@apollosolutions/query-plan-generator",
"version": "2.3.3",
"main": "src/index.js",
"bin": "bin/index.js",
"license": "MIT",
"type": "module",
"dependencies": {
"@apollo/federation-internals": "^2.9.3",
"@apollo/query-planner": "^2.9.3",
"clipanion": "^3.2.0-rc.13",
"graphql": "^16.8.1",
"graphql-request": "^4.3.0",
"graphql-tag": "^2.12.6",
"make-fetch-happen": "^10.2.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.16.1",
"@graphql-codegen/typescript": "^2.8.8",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^2.5.13",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"scripts": {
"gql": "yarn graphql-codegen && yarn tsc -p studio/tsconfig.json",
"dev": "node bin/index.js",
"dev:example": "yarn dev --supergraph example/supergraph.graphql --operation example/operation.graphql",
"dev:example:pretty": "yarn dev:example --pretty",
"dev:example:perf": "yarn dev --supergraph example/supergraph.graphql --operation example/operation.graphql --skipLog"
}
}