console/packages/services/usage-ingestor/package.json
Dimitri POSTOLOV 12ceda69dc
Use pnpm instead of yarn (#477)
Co-authored-by: enisdenjo <badurinadenis@gmail.com>
Co-authored-by: Denis Badurina <denis@domonda.com>
2022-11-01 02:11:53 +02:00

39 lines
984 B
JSON

{
"private": true,
"type": "module",
"name": "@hive/usage-ingestor",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "tsup-node src/dev.ts --watch --format esm --target node16 --onSuccess 'node dist/dev.js' | pino-pretty --translateTime HH:MM:ss TT --ignore pid,hostname",
"build": "bob runify --single",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@sentry/node": "7.12.1",
"@sentry/tracing": "7.12.1",
"agentkeepalive": "4.2.1",
"date-fns": "2.25.0",
"dotenv": "10.0.0",
"graphql": "16.5.0",
"got": "12.5.1",
"kafkajs": "2.2.0",
"tiny-lru": "8.0.2",
"zod": "3.15.1"
},
"devDependencies": {
"@graphql-hive/core": "0.2.2",
"@hive/service-common": "0.0.0",
"@hive/usage-common": "0.0.0",
"pino-pretty": "6.0.0",
"tslib": "2.4.0"
},
"buildOptions": {
"runify": true,
"tsup": true,
"tags": [
"backend"
],
"banner": "../../../scripts/banner.js"
}
}