forked from homebridge/homebridge-config-ui-x
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
135 lines (135 loc) · 3.83 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "homebridge-config-ui-x",
"displayName": "Homebridge Config UI X",
"version": "4.27.1",
"description": "A web based management, configuration and control platform for Homebridge",
"license": "MIT",
"author": "oznu <dev@oz.nu>",
"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",
"bin": {
"homebridge-config-ui-x": "./dist/bin/standalone.js",
"hb-service": "./dist/bin/hb-service.js"
},
"engines": {
"node": ">=10.17.0",
"homebridge": ">=0.4.22"
},
"scripts": {
"watch": "concurrently \"npm run watch:ui\" \"npm run watch:server\"",
"watch:server": "nodemon",
"watch:ui": "npm run start --prefix ui",
"build": "npm run build:server && npm run build:ui",
"build:server": "rimraf dist && tsc -p tsconfig.build.json && npm run webpack",
"build:ui": "npm run build --prefix ui",
"start": "ts-node -r tsconfig-paths/register src/main.ts",
"lint": "npm run lint:server && npm run lint:ui",
"lint:server": "tslint -p tsconfig.json -c tslint.json",
"lint:ui": "npm run lint --prefix ui",
"webpack": "webpack --config webpack.config.js",
"install:ui": "npm install --prefix ui",
"test:e2e": "jest --forceExit --detectOpenHandles --verbose=true --silent --config ./test/jest-e2e.json",
"prepublishOnly": "npm i --package-lock-only && npm run lint && npm run build"
},
"dependencies": {
"@nestjs/common": "7.3.2",
"@nestjs/core": "7.3.2",
"@nestjs/platform-fastify": "7.3.2",
"@nestjs/platform-socket.io": "7.3.2",
"@nestjs/swagger": "4.5.12",
"@nestjs/websockets": "7.3.2",
"axios": "^0.19.2",
"class-transformer": "0.2.3",
"class-validator": "^0.12.2",
"commander": "^6.0.0",
"dayjs": "^1.8.34",
"fastify": "2.15.1",
"fastify-multipart": "1.0.6",
"fastify-static": "2.7.0",
"fastify-swagger": "2.6.0",
"fs-extra": "^9.0.1",
"helmet": "3.23.2",
"node-cache": "^5.1.2",
"node-pty-prebuilt-multiarch": "^0.9.0",
"ora": "^5.0.0",
"pino-pretty": "^4.1.0",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.6.2",
"semver": "^7.3.2",
"systeminformation": "^4.27.3",
"tail": "^2.0.4",
"tar": "^6.0.5",
"tcp-port-used": "^1.0.1",
"unzipper": "^0.10.11"
},
"devDependencies": {
"@nestjs/jwt": "^7.1.0",
"@nestjs/passport": "^7.1.0",
"@nestjs/testing": "7.3.2",
"@oznu/hap-client": "^1.6.0",
"@types/fs-extra": "^9.0.1",
"@types/jest": "^26.0.12",
"@types/node": "^14.6.2",
"@types/semver": "^7.3.3",
"@types/socket.io": "^2.1.11",
"@types/tar": "^4.0.3",
"@types/unzipper": "^0.10.3",
"bash-color": "0.0.4",
"buffer-shims": "^1.0.0",
"concurrently": "^5.3.0",
"dotenv": "^8.2.0",
"form-data": "^3.0.0",
"jest": "^26.4.2",
"lodash": "^4.17.20",
"nodemon": "^2.0.4",
"otplib": "^12.0.1",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"prettier": "^2.0.5",
"qr-image": "^3.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"ts-loader": "^8.0.3",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.3",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-node-externals": "^2.5.2"
},
"keywords": [
"homebridge-plugin",
"ui",
"gui",
"web",
"homebridge",
"homebridge-config-ui-x",
"ui-x",
"config-ui-x",
"homebridge-x",
"homebridge server",
"homebridge ui",
"homebridge-ui",
"homebridge gui",
"homebridge-gui",
"web interface",
"config ui",
"management",
"config editor",
"linux",
"macOS",
"osx",
"windows",
"raspberry pi",
"accessory control",
"smart home",
"hb-service"
]
}