-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
executable file
·39 lines (39 loc) · 1.01 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
39
{
"name": "ws-receiver",
"version": "0.0.1",
"description": "websocket+protobuf receiver to avro+kafka",
"main": "index.js",
"scripts": {
"start": "node src/index.js",
"inspect": "node --inspect=0.0.0.0:9229 src/index.js"
},
"author": "Carlos Reif",
"license": "MIT",
"dependencies": {
"async": "^2.6.2",
"avsc": "^5.4.7",
"axios": "^0.18.0",
"bindings": "^1.5.0",
"debug": "^4.1.1",
"fifo": "^2.3.0",
"long": "^4.0.0",
"prom-client": "^11.2.1",
"mongodb": "^3.0.3",
"prometheus-gc-stats": "^0.6.1",
"protobufjs": "^6.8.8",
"quick-lru": "^3.0.0",
"uuid": "^3.3.2",
"websocket": "file:./common/src/main/js/websocket",
"ws": "^6.2.0"
},
"devDependencies": {
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"prettier": "^1.15.2"
}
}