-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.29 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
{
"name": "home-assistant",
"version": "1.0.0",
"description": "Node backend for home automation Raspberry Pi server",
"main": "server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node .",
"build-node": "gulp build",
"build-server-docs": "jsdoc -d ./compiled/docs/server .",
"build-api-docs": "apidoc -i intermediate/ -o compiled/docs/api",
"build-docs": "jsdoc -d ./compiled/docs/server . && jsdoc -d ./compiled/docs/server/devices ./Devices && apidoc -i intermediate/ -o compiled/docs/api",
"build-ng": "gulp build-ng",
"build": "npm run build-node && npm run build-docs && npm run build-ng",
"run-prod": "cd compiled && node server.js",
"build-n-run": "npm run build && npm run run-prod",
"git-pull": "git pull origin stable",
"rebase": "npm run git-pull && npm run build-n-run",
"install-deps": "npm install && cd angular && npm install && cd ../electron && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donaldelrod/Home-Assistant.git"
},
"author": "Donald Elrod",
"license": "SEE LICENSE IN license",
"bugs": {
"url": "https://github.com/donaldelrod/Home-Assistant/issues"
},
"homepage": "https://github.com/donaldelrod/Home-Assistant#readme",
"dependencies": {
"child-process": "^1.0.2",
"cors": "^2.8.5",
"delivery-tracker": "^2.1.3",
"express": "^4.17.1",
"googleapis": "^34.0.0",
"harmonyhubjs-client": "^1.1.11",
"homebridge": "^0.4.50",
"multer": "^1.4.2",
"netgear": "^3.9.0",
"node-schedule": "^1.3.2",
"open": "6.0.0",
"proxmox": "^0.1.0",
"tplink-smarthome-api": "^2.0.0",
"tuyapi": "github:codetheweb/tuyapi"
},
"devDependencies": {
"apidoc": "^0.17.7",
"del": "^3.0.0",
"eslint": "^6.5.1",
"gulp": "^4.0.2",
"gulp-strip-debug": "^3.0.0",
"gulp-uglify-es": "^1.0.4",
"gulp-util": "^3.0.8",
"ts": "^0.2.2",
"typescript": "^3.6.3",
"typescript-require": "^0.2.10"
},
"apidoc": {
"name": "Home-Assistant Node API Documentation",
"version": "0.0.1",
"description": "All the backend REST API routes for Home Assistant",
"title": "Home-Assistant API",
"url": "http://donaldelrod.ddns.net:9875",
"sampleUrl": "http://donaldelrod.ddns.net:9875"
}
}