2022-05-18 07:26:57 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hive/server",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"private": true,
|
2022-05-27 12:15:11 +00:00
|
|
|
"version": "0.0.0",
|
2022-05-18 07:26:57 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
2022-11-04 12:46:04 +00:00
|
|
|
"dev": "tsup-node src/dev.ts --format esm --target node16 --watch --sourcemap --onSuccess 'node --enable-source-maps dist/dev.js' | pino-pretty --translateTime HH:MM:ss TT --ignore pid,hostname",
|
2022-05-18 07:26:57 +00:00
|
|
|
"build": "bob runify --single",
|
|
|
|
|
"typecheck": "tsc --noEmit"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-11-11 08:59:34 +00:00
|
|
|
"@envelop/core": "3.0.3",
|
|
|
|
|
"@envelop/graphql-modules": "4.0.3",
|
|
|
|
|
"@envelop/generic-auth": "5.0.3",
|
|
|
|
|
"@envelop/sentry": "4.0.3",
|
2022-10-20 11:54:13 +00:00
|
|
|
"@envelop/types": "3.0.0",
|
2022-11-14 13:14:13 +00:00
|
|
|
"graphql-yoga": "3.0.0-next.12",
|
2022-11-22 10:21:19 +00:00
|
|
|
"@sentry/node": "7.20.1",
|
|
|
|
|
"@sentry/integrations": "7.20.1",
|
|
|
|
|
"@sentry/tracing": "7.20.1",
|
2022-05-18 07:26:57 +00:00
|
|
|
"dotenv": "10.0.0",
|
2022-11-10 11:44:20 +00:00
|
|
|
"got": "12.5.2",
|
2022-05-18 07:26:57 +00:00
|
|
|
"graphql": "16.5.0",
|
2022-06-28 13:01:44 +00:00
|
|
|
"hyperid": "2.3.1",
|
2022-09-06 07:38:31 +00:00
|
|
|
"reflect-metadata": "0.1.13",
|
2022-10-25 14:12:43 +00:00
|
|
|
"@trpc/server": "9.23.2",
|
2022-09-06 07:38:31 +00:00
|
|
|
"zod": "3.15.1",
|
2022-10-06 11:48:01 +00:00
|
|
|
"@whatwg-node/fetch": "0.4.7"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2022-11-22 17:03:46 +00:00
|
|
|
"@graphql-hive/client": "0.21.3",
|
2022-11-01 19:02:56 +00:00
|
|
|
"@hive/api": "workspace:*",
|
|
|
|
|
"@hive/service-common": "workspace:*",
|
|
|
|
|
"@hive/storage": "workspace:*",
|
2022-05-18 07:26:57 +00:00
|
|
|
"pino-pretty": "6.0.0",
|
2022-11-01 00:11:53 +00:00
|
|
|
"@swc/core": "1.2.185",
|
2022-11-22 10:31:53 +00:00
|
|
|
"fastify": "3.29.4",
|
2022-11-01 00:11:53 +00:00
|
|
|
"tslib": "2.4.0"
|
2022-05-18 07:26:57 +00:00
|
|
|
},
|
|
|
|
|
"buildOptions": {
|
|
|
|
|
"runify": true,
|
|
|
|
|
"tsup": true,
|
|
|
|
|
"external": [
|
|
|
|
|
"pg-native"
|
|
|
|
|
],
|
|
|
|
|
"tags": [
|
|
|
|
|
"backend"
|
|
|
|
|
],
|
|
|
|
|
"banner": "../../../scripts/banner.js"
|
|
|
|
|
}
|
|
|
|
|
}
|