-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.6 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "mongo-to-rabbit",
"version": "4.0.4",
"description": "a mongodb watcher notifying rabbitmq",
"keywords": [
"rabbitmq",
"mongo",
"listener",
"rabbit",
"mq",
"typescript",
"mongodb",
"db",
"changes",
"watch"
],
"main": "lib/index.js",
"scripts": {
"start": "tsc && npm run serve",
"serve": "node lib/index.js",
"build": "tsc",
"receive": "tsc && node lib/example/receive.js",
"connect": "tsc -p . && node lib/example/connect.js",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shahar-Y/mongo-to-rabbit.git"
},
"author": "Shahar Yair",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shahar-Y/mongo-to-rabbit/issues"
},
"homepage": "https://github.com/Shahar-Y/mongo-to-rabbit#readme",
"devDependencies": {
"@types/amqplib": "^0.5.13",
"@types/mongodb": "^3.6.12",
"@types/node": "^14.11.2",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.21.0",
"prettier": "^2.1.2",
"typescript": "^4.0.2"
},
"dependencies": {
"amqplib": "^0.6.0",
"connection-string-parser": "^1.0.3",
"menashmq": "^0.1.3",
"mongodb": "^3.6.2",
"mongoose": "^5.13.2",
"tslint-config-airbnb": "^5.11.2"
}
}