-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.35 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
{
"name": "watchdog",
"description": "Detect and alert when someone approaches your unattended laptop",
"version": "0.1.0-SNAPSHOT",
"author": "Conor Hughes <hello@conorhughes.me>",
"copyright": "© 2019, Snugsend",
"homepage": "https://github.com/ThatGuyHughesy/watchdog",
"repository": {
"type": "git",
"url": "git+https://github.com/ThatGuyHughesy/watchdog.git"
},
"bugs": {
"url": "https://github.com/ThatGuyHughesy/watchdog/issues"
},
"keywords": [
"nodejs",
"webcam",
"face-detection",
"twilio",
"whatsapp"
],
"main": "main.js",
"scripts": {
"start": "NODE_ENV=development nodemon main.js",
"lint": "eslint --fix . --ext .js .",
"test": "NODE_ENV=test mocha ./*.spec.js --timeout 10000 --exit"
},
"dependencies": {
"@tensorflow/tfjs-node": "~1.0.2",
"body-parser": "^1.19.0",
"canvas": "^2.5.0",
"cron": "^1.7.1",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"face-api.js": "^0.20.0",
"ngrok": "^3.1.1",
"node-webcam": "^0.5.0",
"nodemon": "^1.19.1",
"twilio": "^3.31.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.1.0",
"mocha": "^7.1.1",
"prettier": "^1.17.1"
}
}