-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.52 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": "mq-repeater",
"version": "1.0.0",
"description": "A temporary bridge between certain services and our RabbitMQ server that don't support it natively.",
"homepage": "https://github.com/esamarathon/mq-repeater#readme",
"bugs": {
"url": "https://github.com/esamarathon/mq-repeater/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/esamarathon/mq-repeater.git"
},
"license": "MIT",
"author": "zoton2",
"main": "dist/index.js",
"scripts": {
"autofix": "eslint --fix --ext .ts,.d.ts src",
"build": "tsc -b tsconfig.json",
"docker": "docker build --pull --rm -f \"Dockerfile\" -t ghcr.io/esamarathon/mq-repeater:latest \".\"",
"start": "node ./dist/index.js",
"watch": "tsc -b tsconfig.json -w"
},
"dependencies": {
"amqp-connection-manager": "^3.7.0",
"amqplib": "^0.8.0",
"body-parser": "^1.19.1",
"express": "^4.17.2",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@types/amqp-connection-manager": "^2.0.12",
"@types/amqplib": "^0.8.2",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.17",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.3",
"typescript": "^4.5.4"
}
}