forked from CESARBR/knot-cloud-protocol-adapter-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.43 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
{
"name": "@cesarbr/knot-cloud-protocol-adapter-websocket",
"version": "1.0.0",
"description": "KNoT Cloud WebSocket protocol adapter",
"repository": {
"type": "git",
"url": "git+https://github.com/CESARBR/knot-cloud-protocol-adapter-websocket.git"
},
"main": "./build/index.js",
"author": "KNoT",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"build": "babel src --out-dir build",
"start": "node build",
"start:watch": "nodemon --exec babel-node src",
"start:debug": "babel-node debug src"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-module-resolver": "^3.2.0",
"eslint": "^5.3.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-babel-module": "^5.1.0",
"eslint-plugin-import": "^2.17.3",
"nodemon": "^1.18.6",
"pre-commit": "^1.2.2"
},
"dependencies": {
"@octoblu/redis-ns": "^1.3.1",
"config": "^2.0.1",
"flat": "^4.1.0",
"ioredis": "^4.2.0",
"is-base64": "^0.1.0",
"joi": "^14.3.1",
"lodash": "^4.17.11",
"meshblu-core-job-manager": "^11.2.2",
"meshblu-core-manager-hydrant": "^2.0.0",
"meshblu-uuid-alias-resolver": "^1.0.3",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"shortid": "^2.2.14",
"winston": "^3.1.0",
"ws": "^6.1.0"
},
"pre-commit": [
"lint"
]
}