-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
54 lines (54 loc) · 1.57 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
{
"name": "devicehive-ws-proxy",
"version": "3.0.0",
"description": "WebSocket to message broker proxy",
"main": "./src/proxy.js",
"scripts": {
"start": "node ./src/proxy.js",
"format:check": "prettier --check .",
"format:write": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devicehive/devicehive-ws-proxy.git"
},
"keywords": [
"DeviceHive",
"WebSocket",
"MessageBus",
"Kafka"
],
"author": "Ihor Trambovetskyi (igortram@gmail.com)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/devicehive/devicehive-ws-proxy/issues"
},
"homepage": "https://github.com/devicehive/devicehive-ws-proxy#readme",
"dependencies": {
"async-mutex": "^0.3.2",
"axios": "^0.27.2",
"debug": "^4.3.4",
"devicehive-proxy-message": "^1.0.13",
"fifo": "^2.4.1",
"json-evn-configurator": "^1.0.6",
"jsonwebtoken": "^8.5.1",
"kafkajs": "^2.2.4",
"lodash": "^4.17.21",
"object-sizeof": "^1.6.3",
"shortid": "^2.2.16",
"uuid": "^8.3.2",
"winston": "^3.8.1",
"ws": "^8.8.1"
},
"devDependencies": {
"eslint": "^8.20.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"husky": "^8.0.1",
"node-status": "^1.0.0",
"prettier": "^2.7.1"
}
}