-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.1 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.1 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
{
"name": "@media-network/media-job-loop",
"version": "1.0.0",
"description": "Execute jobs forever",
"main": "index.js",
"repository": "git@github.com:media-network/media-job-loop.git",
"author": "LongLH <d@dapps.me>",
"license": "MIT",
"dependencies": {
"@babel/runtime": "7.2.0",
"amqplib": "0.5.2",
"as-array": "2.0.0",
"aws-sdk": "2.358.0",
"delay": "4.1.0",
"ect": "0.5.9",
"email-templates": "5.0.2",
"express": "4.16.4",
"morgan": "1.9.1",
"ms": "2.1.1",
"serialize-error": "3.0.0",
"superagent": "4.0.0-beta.5"
},
"devDependencies": {
"@babel/cli": "7.1.5",
"@babel/core": "7.1.5",
"@babel/node": "7.0.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@babel/preset-env": "7.1.5",
"babel-plugin-module-resolver": "3.1.1",
"concurrently": "4.0.1",
"nodemon": "1.18.6",
"run.env": "1.1.0"
},
"scripts": {
"start": "run.env nodemon --watch ./src --exec babel-node ./src",
"build": "rm -rf ./build && babel ./src -d ./build && cp -r ./src/handlers/send-email/templates ./build/handlers/send-email"
}
}