-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.37 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "node-red-contrib-z2m",
"version": "0.0.1",
"description": "Node-RED nodes for zigbee2mqtt",
"keywords": [
"node-red",
"zigbee2mqtt",
"z2m",
"mqtt"
],
"homepage": "https://github.com/kristianheljas/node-red-contrib-z2m",
"bugs": {
"url": "https://github.com/kristianheljas/node-red-contrib-z2m/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/kristianheljas/node-red-contrib-z2m.git"
},
"license": "MIT",
"author": "Kristian Heljas <[email protected]>",
"main": "index.js",
"files": [
"dist"
],
"scripts": {
"build": "gulp",
"lint": "eslint --fix .",
"format": "prettier --write .",
"prepack": "gulp prepack",
"postpack": "gulp postpack",
"prepare": "is-ci || node scripts/not-project-root.js || (husky install && yarn --cwd .node-red)"
},
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.12",
"@babel/preset-typescript": "^7.13.0",
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@schemastore/package": "^0.0.6",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/ejs": "^3.0.6",
"@types/express": "^4.17.11",
"@types/fancy-log": "^1.3.1",
"@types/gulp": "^4.0.8",
"@types/lodash": "^4.14.168",
"@types/minimist": "^1.2.1",
"@types/node": "^14.14.35",
"@types/node-red": "^1.1.1",
"@types/nodemon": "^1.19.0",
"@types/rimraf": "^3.0.0",
"@types/select2": "^4.0.53",
"@types/through2": "^2.0.36",
"@types/undertaker": "^1.2.6",
"@types/vinyl": "^2.0.4",
"@types/ws": "^8.5.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"css-loader": "^5.2.0",
"ejs": "^3.1.6",
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"fancy-log": "^1.3.3",
"globby": "^11.0.2",
"gulp": "^4.0.2",
"husky": "^5.1.3",
"is-ci": "^3.0.0",
"lint-staged": "^10.5.4",
"minimist": "^1.2.5",
"mqtt": "^4.2.6",
"mqtt-packet": "^6.9.0",
"node-red": "^1.2.9",
"nodemon": "^2.0.7",
"plugin-error": "^1.0.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"select2": "^4.1.0-rc.0",
"semantic-release": "^17.4.2",
"sort-package-json": "^1.49.0",
"style-loader": "^2.0.0",
"through2": "^4.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.3",
"undertaker": "^1.3.0",
"vinyl": "^2.2.1",
"webpack": "^5.28.0",
"webpack-cli": "^4.5.0"
},
"engines": {
"node": ">=12"
},
"node-red": {
"nodes": {
"z2m-core": "dist/nodes/core/index.js",
"z2m-broker": "dist/nodes/broker/index.js",
"z2m-bridge-state": "dist/nodes/bridge-state/index.js",
"z2m-bridge-restart": "dist/nodes/bridge-restart/index.js",
"z2m-bridge-logs": "dist/nodes/bridge-logs/index.js",
"z2m-device-in": "dist/nodes/device-in/index.js",
"z2m-device-out": "dist/nodes/device-out/index.js"
}
}
}