mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
e9c697aaa9
[GDC-1064]: https://hasurahq.atlassian.net/browse/GDC-1064?atlOrigin=eyJpIjoiNWRkNTljNzYxNjVmNDY3MDlhMDU5Y2ZhYzA5YTRkZjUiLCJwIjoiZ2l0aHViLWNvbS1KU1cifQ PR-URL: https://github.com/hasura/graphql-engine-mono/pull/8345 GitOrigin-RevId: 9ef91944ba6408e1030a47de58f3271145433ee2
39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "@hasura/dc-agent-reference",
|
|
"version": "0.1.0",
|
|
"description": "Reference implementation of a Data Connector Agent for Hasura GraphQL Engine",
|
|
"author": "Hasura (https://github.com/hasura/graphql-engine)",
|
|
"license": "Apache-2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/hasura/graphql-engine.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/hasura/graphql-engine/issues"
|
|
},
|
|
"homepage": "https://github.com/hasura/graphql-engine#readme",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"typecheck": "tsc --noEmit",
|
|
"start": "ts-node ./src/index.ts",
|
|
"start-no-typecheck": "ts-node --transpileOnly ./src/index.ts",
|
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
},
|
|
"dependencies": {
|
|
"@fastify/cors": "^8.1.0",
|
|
"@hasura/dc-api-types": "0.27.0",
|
|
"fastify": "^4.13.0",
|
|
"mathjs": "^11.0.0",
|
|
"pino-pretty": "^8.0.0",
|
|
"xml2js": "github:Leonidas-from-XIV/node-xml2js"
|
|
},
|
|
"devDependencies": {
|
|
"@tsconfig/node16": "^1.0.3",
|
|
"@types/node": "^16.11.49",
|
|
"@types/xml2js": "^0.4.11",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.7.4"
|
|
}
|
|
}
|