forked from ycardon/gigaset-elements-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.26 KB
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
{
"name": "gigaset-elements-proxy",
"version": "2.2.2",
"description": "a simple web and mqtt local gateway for reaching gigaset-elements API",
"keywords": [
"gigaset-elements",
"home-assistant",
"mqtt"
],
"homepage": "https://github.com/ycardon/gigaset-elements-proxy",
"bin": {
"ge-proxy": "./dist/app.js"
},
"scripts": {
"start": "node app.js",
"build": "node build.js && tsc",
"dev": "npm run build && pm2 stop gigaset && node app.js && open 'http://localhost:3000'",
"prepare": "npm run build"
},
"author": "Yann Cardon <ycardon@gmail.com>",
"repository": "ycardon/gigaset-elements-proxy",
"license": "ISC",
"dependencies": {
"config": "^3.2.2",
"console-stamp": "^0.2.9",
"express": "^4.17.1",
"js-yaml": "^3.13.1",
"markdown-it": "^10.0.0",
"mqtt": "2.*.*",
"mqtt-packet": "^6.2.1",
"request": "^2.88.0",
"source-map-support": "^0.5.13"
},
"preferGlobal": true,
"devDependencies": {
"@types/config": "0.0.34",
"@types/express": "^4.17.1",
"@types/markdown-it": "0.0.8",
"@types/request": "^2.48.3",
"replace-in-file": "^4.1.3"
}
}