-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "broadlink-mqtt-bridge",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "node -r esm index.js",
"development": "nodemon -r esm --inspect index.js localhost 3000",
"logs": "frontail --port 3001 --disable-usage-stats output.log",
"production": "node -r esm index.js",
"convert": "node -r esm convert-to-base64.js"
},
"dependencies": {
"body-parser": "^1.19.0",
"broadlinkjs-rm": "^0.7.6",
"config": "^3.3.2",
"esm": "^3.2.25",
"express": "^4.17.1",
"flatted": "^3.1.0",
"frontail": "^4.9.1",
"is-docker": "^2.1.1",
"lodash": "^4.17.20",
"md5": "^2.3.0",
"md5-file": "^5.0.0",
"mqtt": "^4.2.1",
"request": "^2.88.2",
"shelljs": "^0.8.4",
"socket.io": "^2.3.0",
"systeminformation": "^4.29.3",
"winston": "^3.3.3",
"yargs": "^16.1.0"
},
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"nodemon": "^2.0.6"
}
}