console/packages/services/usage-estimator/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

40 lines
1 KiB
JSON

{
"private": true,
"type": "module",
"name": "@hive/usage-estimator",
"description": "A microservice for Hive SaaS, that calculates and exposes usage information.",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"dev": "tsup-node src/dev.ts --format esm --target node16 --watch --onSuccess 'node dist/dev.js' | pino-pretty --translateTime HH:MM:ss TT --ignore pid,hostname",
"build": "bob runify --single",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@whatwg-node/fetch": "0.4.7",
"zod": "3.15.1",
"@trpc/server": "9.23.2",
"reflect-metadata": "0.1.13",
"@sentry/node": "7.12.1",
"@sentry/tracing": "7.12.1",
"dotenv": "10.0.0",
"got": "12.5.1"
},
"devDependencies": {
"@hive/api": "0.0.1",
"@hive/service-common": "0.0.0",
"pino-pretty": "6.0.0",
"tslib": "2.4.0"
},
"buildOptions": {
"runify": true,
"tsup": true,
"external": [
"pg-native"
],
"tags": [
"backend"
],
"banner": "../../../scripts/banner.js"
}
}