@0xobelisk/graphql-server
Version:
Tookit for interacting with dubhe graphql server
74 lines • 2.08 kB
JSON
{
"name": "@0xobelisk/graphql-server",
"version": "1.2.0-pre.88",
"description": "Tookit for interacting with dubhe graphql server",
"keywords": [
"graphql",
"postgraphile",
"database-adapter",
"websocket",
"subscription",
"postgresql",
"dynamic"
],
"license": "MIT",
"author": "Dubhe Team",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"dubhe-graphql-server": "dist/cli.js"
},
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^6.1.0",
"@graphile/pg-pubsub": "^4.14.1",
"@graphile/subscriptions-lds": "^4.14.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.21.2",
"graphile-utils": "^4.14.1",
"graphql": "^15.8.0",
"graphql-subscriptions": "^2.0.0",
"graphql-ws": "^5.16.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.3",
"pino": "^8.16.2",
"pino-pretty": "^10.2.3",
"postgraphile": "^4.13.0",
"postgraphile-plugin-connection-filter": "^2.3.0",
"ws": "^8.14.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/cors": "^2.8.18",
"@types/express": "^4.17.23",
"@types/node": "^20.8.10",
"@types/pg": "^8.10.7",
"@types/ws": "^8.5.8",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"nodemon": "^3.1.10",
"ts-node": "^10.9.1",
"tsx": "^3.12.10",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "pnpm run type-check && tsc",
"dev": "ts-node src/cli.ts start",
"dev:cli": "ts-node src/cli.ts start",
"dev:watch": "nodemon --exec \"ts-node src/cli.ts start\"",
"lint": "eslint . --ext .ts",
"start": "pnpm start:cli",
"start:cli": "node dist/cli.js start",
"test": "jest",
"test:all": "node test_all_subscriptions.js",
"test:enhanced": "node test_enhanced_subscriptions.js",
"test:subscription": "node test-subscription.js",
"type-check": "tsc --noEmit"
}
}