-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
34 lines (34 loc) · 968 Bytes
/
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
{
"name": "rabbitmq-mail-consumer-server",
"version": "1.0.0",
"description": "Headless mail consumer which is for sending mails and abstract it. If you want it controls blacklist from redis.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=6.9.0"
},
"author": "Mustafa Erdem Köşk <[email protected]>",
"license": "ISC",
"dependencies": {
"amqplib": "^0.5.5",
"async-redis": "^1.1.7",
"bluebird": "^3.7.2",
"cryptr": "^6.0.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"ioredis": "^4.16.3",
"nodemailer": "^6.4.6",
"nodemailer-express-handlebars": "^4.0.0",
"redis": "^3.0.2"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.2"
}
}