-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.47 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
{
"name": "exexpress-worker",
"version": "1.0.0",
"description": "Rabbitmq worker for express js",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"publisher": "nodemon src/publisher/index.js --exec babel-node",
"worker": "nodemon src/worker/index.js --exec babel-node",
"build": "babel src -d dist",
"serve_publisher": "node dist/publisher/index.js",
"serve_worker": "node dist/worker/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/madasatya6/express-worker.git"
},
"author": "Mada Satya Bayu Ambika",
"license": "ISC",
"bugs": {
"url": "https://github.com/madasatya6/express-worker/issues"
},
"homepage": "https://github.com/madasatya6/express-worker#readme",
"dependencies": {
"@babel/cli": "^7.13.14",
"@babel/preset-react": "^7.13.13",
"amqplib": "^0.10.3",
"bluebird": "^3.7.2",
"express": "^4.18.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.14",
"@babel/runtime": "^7.13.10",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.3.0",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "^2.0.20"
}
}