-
Notifications
You must be signed in to change notification settings - Fork 690
/
package.json
executable file
·90 lines (90 loc) · 2.44 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": "smart-mirror",
"version": "0.0.30",
"description": "The fairest of them all",
"main": "main.js",
"scripts": {
"install": "bower install",
"start": "DISPLAY=\"${DISPLAY:=:0}\" electron main.js ",
"train-model": "electron scripts/train-model.js",
"sonus": "node sonus.js",
"motion": "sudo node motion.js",
"enable-motion": "npm install johnny-five raspi-io",
"update": "git pull && npm install",
"wiredep": "wiredep -s index.html",
"test": "eslint . --ignore-path .gitignore",
"test-fix": "eslint . --ignore-path .gitignore --fix",
"postinstall": "bash scripts/copyjsonform",
"preinstall": "bash scripts/installcblas"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evancohen/smart-mirror.git"
},
"keywords": [
"Smart Mirror",
"IoT",
"Voice Control",
"DIY"
],
"author": "Evan Cohen",
"license": "MIT",
"bugs": {
"url": "https://github.com/evancohen/smart-mirror/issues"
},
"homepage": "https://github.com/evancohen/smart-mirror",
"devDependencies": {
"angular-i18n": "^1.8.2",
"bower": "^1.8.12",
"electron": "11.3.0",
"eslint": "^6.8.0",
"wiredep-cli": "^0.1.0"
},
"dependencies": {
"@google-cloud/speech": "^4.2.0",
"@grpc/grpc-js": "^1.2.11",
"alphavantage": "1.2.6",
"angular-moment": "^1.3.0",
"angular-sanitize": "1.5.11",
"annyang": "^2.6.1",
"cheerio": "^1.0.0-rc.5",
"electron-json-storage": "^4.4.0",
"electron-rebuild": "^1.11.0",
"express": "^4.17.1",
"fitbit-oauth2": "0.0.1",
"humanize-duration": "^3.25.1",
"hyperion-client": "1.0.3",
"jsonform": "git://github.com/jsonform/jsonform.git",
"moment": "^2.29.1",
"pretty-ms": "^7.0.1",
"recorder": "git+https://[email protected]/sdetweil/recorder.git",
"rss-parser": "^3.12.0",
"socket.io": "2.3.0",
"sonus": "git+https://[email protected]/sdetweil/sonus.git",
"spotify-web-api-node": "^5.0.0",
"waitprocess": "git+https://github.com/sdetweil/waitprocess.git",
"winston": "^3.3.3",
"youtube-api": "^3.0.1"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"es6": true,
"browser": true
},
"rules": {
"no-console": 0
},
"parserOptions": {
"ecmaVersion": 2017
},
"globals": {
"angular": false,
"annyang": false,
"moment": false,
"config": false,
"RRule": false
}
}
}