forked from homebridge/homebridge-config-ui-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.04 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
{
"name": "homebridge-config-ui-x",
"version": "3.11.0",
"description": "Configuration UI plugin for Homebridge",
"license": "MIT",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/oznu/homebridge-config-ui-x.git"
},
"bugs": {
"url": "https://github.com/oznu/homebridge-config-ui-x/issues"
},
"main": "./dist/index.js",
"scripts": {
"webpack": "webpack --config webpack.config.js",
"build": "npm run build:server && npm run build:ui",
"build:server": "rimraf dist && tsc && npm run webpack",
"build:ui": "npm run build --prefix ui",
"watch": "concurrently \"npm run watch:ui\" \"npm run watch:server\"",
"watch:server": "tsc --watch",
"watch:ui": "npm run start --prefix ui",
"install:ui": "npm install --prefix ui",
"prepublishOnly": "npm i --package-lock-only && npm audit && npm run build"
},
"bin": {
"homebridge-config-ui-x": "./dist/bin/standalone.js"
},
"engines": {
"node": ">=6.9.1",
"homebridge": ">=0.4.22"
},
"dependencies": {
"@oznu/hap-client": "0.0.4",
"bash-color": "^0.0.4",
"bluebird": "^3.5.3",
"body-parser": "^1.18.3",
"buffer-shims": "^1.0.0",
"commander": "^2.19.0",
"cors": "^2.8.5",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"fs-extra": "^7.0.1",
"helmet": "^3.16.0",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.11",
"node-pty-prebuilt-multiarch": "0.8.1",
"passport": "~0.4.0",
"passport-http": "^0.3.0",
"qr-image": "^3.2.0",
"request": "^2.88.0",
"request-promise": "^4.2.4",
"semver": "^6.0.0",
"source-map-support": "^0.5.11",
"ws": "^6.2.0"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/fs-extra": "^5.0.5",
"@types/node": "^10.11.0",
"@types/passport": "^1.0.0",
"@types/ws": "^6.0.1",
"concurrently": "^4.1.0",
"rimraf": "^2.6.3",
"ts-loader": "^5.3.3",
"tslint": "^5.14.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}