mailer/package.json
2024-11-20 14:45:39 +01:00

23 lines
508 B
JSON

{
"name": "email-microservice",
"private": true,
"type": "module",
"scripts": {
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts"
},
"dependencies": {
"@hono/node-server": "^1.3.3",
"@hono/swagger-ui": "^0.2.1",
"@hono/zod-openapi": "^0.9.5",
"@hono/zod-validator": "^0.1.11",
"bullmq": "^5.1.1",
"hono": "^4.0.0",
"ioredis": "^5.3.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.4",
"bun-types": "latest"
}
}