azimuth-watcher-ts/packages/gateway-server/package.json
Nabarun Gogoi 86fe1c03af
Use GQL schema stitching to proxy queries to multiple watchers (#18)
* Use apollo federation router to proxy gql queries to multiple watchers

* Use graphql stitch to proxy requests to all watchers

* Load watcher endpoints and prefixes from json

* Transpile typescript and setup lint

* Change conflicting metrics ports

* Add comments
2023-05-02 18:14:30 +05:30

38 lines
1.1 KiB
JSON

{
"name": "@cerc-io/gateway-server",
"version": "0.1.0",
"main": "index.js",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"lint": "eslint --max-warnings=0 .",
"build": "yarn clean && tsc",
"clean": "rm -rf ./dist",
"server": "DEBUG=vulcanize:* node --enable-source-maps dist/index.js",
"server:dev": "DEBUG=vulcanize:* ts-node-dev src/index.ts"
},
"dependencies": {
"@graphql-tools/executor-http": "^0.1.0",
"@graphql-tools/stitch": "^8.7.35",
"@graphql-tools/wrap": "^9.3.0",
"debug": "^4.3.1",
"graphql": "^15.5.0",
"graphql-yoga": "^3.3.0",
"is-reachable": "^5.2.1"
},
"devDependencies": {
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.35.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.4"
}
}