-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
44 lines (44 loc) · 1.38 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
{
"name": "dobiss2mqtt",
"description": "Connect your Dobiss installation to MQTT",
"version": "0.1.0",
"author": "Vincent De Snerck <[email protected]>",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext ts src/",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"validate": "npm run build && npm run lint && npm run test",
"start": "CONFIG_PATH=./data/config.js ts-node-dev --cls --ignore-watch ./data/ -- ./src/index.ts",
"start:prod": "NODE_ENV=production node ./dist/index.js"
},
"volta": {
"node": "13.9.0"
},
"dependencies": {
"convict": "^5.2.0",
"debug": "^4.1.1",
"mqtt": "^3.0.0",
"ms": "^2.1.2",
"rxjs": "^6.5.5"
},
"devDependencies": {
"@types/convict": "^4.2.1",
"@types/debug": "^4.1.5",
"@types/jest": "^25.2.1",
"@types/mqtt": "^2.5.0",
"@types/ms": "^0.7.31",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.5.4",
"ts-jest": "^25.4.0",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
},
"optionalDependencies": {}
}