graphql-engine/dc-agents/sqlite/package.json
Lyndon Maydwell 4b86dfa4ad Adding metrics endpoint to SQLite Data Connector Agent
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5418
GitOrigin-RevId: 28f3b3e14f610ca6b880711d03cf01486413d5ab
2022-08-10 06:38:07 +00:00

45 lines
1.3 KiB
JSON

{
"name": "dc-agent-reference",
"version": "1.0.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",
"fastify": "^4.4.0",
"fastify-metrics": "^9.2.1",
"openapi3-ts": "^2.0.2",
"sequelize": "^6.21.2",
"sqlite": "^4.1.1",
"sqlite-parser": "^1.0.1",
"sqlite3": "^5.0.8",
"sqlstring-sqlite": "^0.1.1",
"xml2js": "^0.4.23",
"pino-pretty": "^8.1.0"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^16.11.38",
"@types/sqlite3": "^3.1.8",
"@types/xml2js": "^0.4.11",
"ts-node": "^10.8.1",
"typescript": "^4.7.4"
}
}