-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.41 KB
/
package.json
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
47
48
{
"name": "@node-mail-broadcast/smtp-client",
"version": "1.0.0",
"description": "This client connects to the provided SMTP servers and sends the email templates finally",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"start": "node .",
"dev": "ts-node-dev --respawn --no-deps --rs --cls ./src/index.ts",
"healthcheck": "node ./dist/utils/healthcheck.js"
},
"keywords": [
"email",
"rabbitmq",
"typescript",
"nodejs"
],
"author": "Nico Wagner",
"license": "MIT",
"devDependencies": {
"@types/amqp-connection-manager": "^2.0.12",
"@types/amqplib": "^0.10.4",
"@types/convict": "^6.1.6",
"@types/node": "^20.11.0",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.1.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@node-mail-broadcast/node-mailer-ts-api": "^0.0.1-d47befab0b92522a6551bac6332251fcf22ce086",
"amqp-connection-manager": "^4.1.14",
"amqplib": "^0.10.3",
"axios": "^1.6.5",
"convict": "^6.2.4",
"crypto-random-string": "^3.3.1",
"email-validator": "^2.0.4",
"joi": "^17.11.0",
"nodemailer": "^6.9.8",
"winston": "^3.11.0"
}
}