Lb1/services/notification-service/package.json

26 lines
541 B
JSON

{
"name": "@luxe/notification-service",
"version": "1.0.0",
"private": true,
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js"
},
"dependencies": {
"@luxe/database": "*",
"@luxe/shared": "*",
"bullmq": "^5.34.8",
"ioredis": "^5.4.2",
"nodemailer": "^6.9.16"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/nodemailer": "^6.4.17",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}