-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 880 Bytes
/
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
{
"name": "hass-sidecar",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node ./src/index.ts",
"dev": "nodemon",
"doc": "typedoc --plugin typedoc-plugin-markdown --exclude ./src/automations ./src/ ./doc/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/moment": "^2.13.0",
"@types/mqtt": "^2.5.0",
"@types/ws": "^7.2.6",
"chokidar": "^3.4.2",
"dotenv": "^8.2.0",
"moment": "^2.27.0",
"mqtt": "^4.2.0",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typedoc": "^0.19.1",
"typedoc-plugin-markdown": "^3.0.0",
"typescript": "^3.9.7",
"websockets": "^0.2.0"
},
"devDependencies": {
"@types/node": "^14.14.3"
}
}