-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 825 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 825 Bytes
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
{
"name": "caesar-server-email-consumer",
"version": "0.0.1",
"description": "Email consumer for the caesar server application",
"main": "app.js",
"repository": "git@github.com:caesar-team/caesar-server-email-consumer.git",
"author": "Aleksander Beshkenadze <ab@caesar.team>",
"license": "MIT",
"private": false,
"scripts": {
"start": "babel-node src/consumer.js",
"build": "babel src --out-dir dist",
"consumer": "node dist/consumer.js"
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"amqplib": "^0.5.3",
"dotenv": "^7.0.0",
"eslint": "^5.16.0",
"nodemailer": "^6.1.1"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/node": "7.2.2",
"@babel/plugin-transform-runtime": "^7.4.3",
"@babel/preset-env": "7.4.3"
}
}