-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
{
"name": "hoobsd",
"version": "4.0.103",
"description": "Server component for the certified HOOBS smart home stack.",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/hoobs-org/hoobsd.git"
},
"bugs": {
"url": "https://github.com/hoobs-org/hoobsd/issues"
},
"main": "lib/main.js",
"author": {
"name": "Michael J Kellsy"
},
"scripts": {
"lint": "eslint 'src/**/*.ts'",
"build": "bin/build --lint",
"debug": "bin/debug build"
},
"dependencies": {
"archiver": "^5.3.0",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cancel-token": "^0.1.1",
"chalk": "^4.1.0",
"chokidar": "^3.5.1",
"commander": "^7.2.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"fluent-ffmpeg": "^2.1.2",
"formidable": "^1.2.2",
"fs-extra": "^9.1.0",
"homebridge": "^1.3.4",
"http-terminator": "^3.0.0",
"lodash": "^4.17.21",
"macaddress": "^0.5.1",
"n-readlines": "^1.0.1",
"node-cache": "^5.1.2",
"node-uname": "^3.0.4",
"sanitize-filename": "^1.6.3",
"semver": "^7.3.5",
"socket.io": "^4.1.2",
"source-map-support": "^0.5.19",
"systeminformation": "^5.6.12",
"unzipper": "^0.10.11",
"ws": "^7.4.6",
"yarn": "^1.22.10"
},
"devDependencies": {
"@tsconfig/node10": "^1.0.7",
"@types/archiver": "^5.1.0",
"@types/commander": "^2.12.2",
"@types/compression": "^1.7.0",
"@types/cors": "^2.8.10",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.11",
"@types/fluent-ffmpeg": "^2.1.17",
"@types/formidable": "^1.0.32",
"@types/fs-extra": "^9.0.7",
"@types/http-terminator": "^2.0.1",
"@types/lodash": "^4.14.168",
"@types/lodash.debounce": "^4.0.6",
"@types/n-readlines": "^1.0.2",
"@types/node": "^14.14.31",
"@types/node-cache": "^4.2.5",
"@types/node-persist": "^3.1.1",
"@types/prompts": "^2.0.9",
"@types/semver": "^7.3.4",
"@types/socket.io": "^2.1.13",
"@types/unzipper": "^0.10.3",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"eslint": "^7.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.1.2",
"nodemon": "^2.0.12",
"prompts": "^2.3.2",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.1.5"
}
}