forked from beyondszine/camerasdiscovery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.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
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
{
"name": "cameras-discovery",
"version": "0.1.1",
"description": "The node js app tries to discover cameras in network by various means including Onvif, port scan, finding RTSP URLs & restreaming via various ways.",
"scripts": {
"start": "HOST='0.0.0.0' nodemon ./bin/www",
"test": "snyk test",
"devstart": "DEBUG=* nodemon -i *.ts -i *.log -i *.md ./bin/www",
"multiarchbuildpush": "git push -o ci.variable='CI_BUILDX_ARCHS=linux/amd64,linux/arm64'"
},
"homepage": "https://github.com/beyondszine/camerasdiscovery",
"license": "SEE LICENSE IN <LICENSE>",
"repository": {
"type": "git",
"url": "https://github.com/beyondszine/camerasdiscovery"
},
"husky": {
"hooks": {
"pre-commit": "bash ./hooks/pre-commit.sh",
"commit-msg": "bash ./hooks/commit-msg.sh",
"pre-push": "bash ./hooks/pre-push.sh",
"post-commit": "bash ./hooks/post-commit.sh"
}
},
"keywords": [
"ONVIF",
"Camera",
"Network Camera",
"Security Camera",
"Baby Camera",
"PTZ"
],
"readmeFilename": "README.md",
"dependencies": {
"@godaddy/terminus": "^4.1.0",
"body-parser": "^1.18.3",
"compression": "^1.7.3",
"config": "^3.0.1",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "^2.6.9",
"dotenv": "^6.1.0",
"express": "~4.16.0",
"find-free-port": "^2.0.0",
"fluent-ffmpeg": "^2.1.2",
"get-port": "^4.1.0",
"helmet": "^4.1.1",
"html": ">=1.0.0",
"http": "0.0.0",
"is-port-reachable": "^3.0.0",
"morgan": "~1.9.0",
"nat-upnp-2": "^3.0.3",
"node-fetch": "^2.6.1",
"node-onvif": "^0.1.7",
"nodemon": "^2.0.4",
"uuid": "^3.3.2",
"websocket": "^1.0.28",
"ws": "^6.2.2",
"xml2js": ">=0.4.17"
},
"devDependencies": {
"husky": "^1.3.1",
"snyk": "^1.717.0"
}
}