-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "mailer",
"version": "1.0.0",
"description": "Bulk email sending service with template support",
"main": "dist/index.js",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ABHINAVGARG05/Mailer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ABHINAVGARG05/Mailer/issues"
},
"homepage": "https://github.com/ABHINAVGARG05/Mailer#readme",
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@types/multer": "^2.0.0",
"@types/nodemailer": "^6.4.17",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@types/express": "^5.0.2",
"@types/redis": "^4.0.10",
"bullmq": "^5.53.0",
"csv-parse": "^6.1.0",
"dayjs": "^1.11.13",
"dotenv": "^17.2.4",
"express": "^5.1.0",
"ioredis": "^5.6.1",
"multer": "^2.0.2",
"nodemailer": "^7.0.3",
"pino": "^9.7.0",
"pino-pretty": "^13.0.0",
"piscina": "^5.0.0",
"redis": "^5.1.1"
}
}