console/packages/services/emails/package.json
2022-11-22 11:21:19 +01:00

44 lines
1.3 KiB
JSON

{
"name": "@hive/emails",
"private": true,
"type": "module",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"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",
"build": "bob runify --single",
"typecheck": "tsc --noEmit",
"postbuild": "copyfiles -f \"node_modules/bullmq/dist/esm/commands/*.lua\" dist && copyfiles -f \"node_modules/bullmq/dist/esm/commands/includes/*.lua\" dist/includes"
},
"dependencies": {
"zod": "3.15.1",
"@trpc/server": "9.23.2",
"@sentry/node": "7.20.1",
"bullmq": "1.81.4",
"@whatwg-node/fetch": "0.4.7",
"dotenv": "10.0.0",
"ioredis": "4.28.5",
"mjml": "4.13.0",
"nodemailer": "6.7.8",
"p-timeout": "5.0.2",
"sendmail": "1.6.1"
},
"devDependencies": {
"@types/mjml": "4.7.0",
"@types/nodemailer": "6.4.6",
"@types/sendmail": "1.4.4",
"@types/ioredis": "4.28.10",
"@hive/service-common": "workspace:*",
"copyfiles": "2.4.1",
"pino-pretty": "6.0.0",
"tslib": "2.4.0"
},
"buildOptions": {
"runify": true,
"tsup": true,
"tags": [
"backend"
],
"banner": "../../../scripts/banner.js"
}
}