forked from seydx/camera.ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.26 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
{
"name": "camera.ui",
"version": "1.1.17",
"description": "NVR like user interface for RTSP capable cameras.",
"author": "SeydX (https://github.com/SeydX/camera.ui)",
"scripts": {
"build": "npm run build --prefix ui",
"lint": "concurrently \"npm run lint:server\" \"npm run lint:ui\"",
"lint:server": "eslint --fix .",
"lint:ui": "npm run lint --prefix ui",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --runInBand --forceExit --detectOpenHandles --config ./test/jest.config.cjs",
"watch": "concurrently \"npm run watch:server\" \"npm run watch:ui\"",
"watch:server": "nodemon",
"watch:ui": "npm run serve --prefix ui",
"prepublishOnly": "npm i --package-lock-only && npm run lint && npm run build"
},
"main": "src/index.js",
"dependencies": {
"@aws-sdk/client-rekognition": "^3.76.0",
"@seydx/lowdb": "^3.0.2",
"alexa-remote2": "^4.1.2",
"axios": "^0.26.1",
"bunyan": "^1.8.15",
"chalk": "4.1.2",
"check-disk-space": "^3.3.0",
"commander": "6.2.1",
"compare-versions": "^4.1.3",
"connect-history-api-fallback": "^1.6.0",
"cors": "^2.8.5",
"express": "^4.17.3",
"ffmpeg-for-homebridge": "0.0.9",
"fs-extra": "^10.1.0",
"ftp-srv": "^4.6.0",
"get-folder-size": "^3.1.0",
"got": "^12.0.3",
"helmet": "^5.0.2",
"ip": "^1.1.5",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"mailparser": "^3.4.0",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"mqtt": "4.2.8",
"multer": "^1.4.4",
"nanoid": "^3.3.3",
"node-telegram-bot-api": "^0.56.0",
"nodejs-tcp-ping": "^1.0.3",
"os": "^0.1.2",
"pam-diff": "^1.1.0",
"piexifjs": "^1.0.6",
"ping": "^0.4.1",
"pipe2pam": "^0.6.2",
"smtp-server": "^3.10.0",
"socket.io": "^4.5.0",
"socketio-jwt": "^4.6.2",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0",
"systeminformation": "^5.11.14",
"tar": "^6.1.11",
"web-push": "^3.4.5"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/eslint-plugin": "^7.17.7",
"concurrently": "6.5.1",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-unicorn": "^42.0.0",
"jest": "^27.5.1",
"jest-jasmine2": "^27.5.1",
"nodemon": "^2.0.15",
"prettier": "^2.6.2",
"supertest": "6.2.2"
},
"optionalDependencies": {
"osx-temperature-sensor": "^1.0.7"
},
"bin": {
"camera.ui": "bin/camera.ui.js"
},
"bugs": {
"url": "https://github.com/SeydX/camera.ui/issues"
},
"engines": {
"node": ">=14.18.1"
},
"funding": [
{
"type": "paypal",
"url": "https://paypal.me/seydx"
},
{
"type": "kofi",
"url": "https://ko-fi.com/seydx"
},
{
"type": "github",
"url": "https://github.com/sponsors/SeydX"
}
],
"homepage": "https://github.com/SeydX/camera.ui#readme",
"keywords": [
"camera.ui",
"motion detection",
"user interface",
"rekognition",
"interface",
"webapp"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SeydX/camera.ui.git"
},
"type": "module"
}