-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 2.08 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
{
"name": "reactive-hass",
"description": "Reactive Home Assistant. Configurable automations in TypeScript and RxJS.",
"version": "0.1.0",
"author": "Vincent De Snerck <vincent@supervillain.be>",
"license": "MIT",
"main": "dist/main.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext ts src/",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"validate": "npm run build && npm run lint && npm run test",
"start": "CHOKIDAR_USEPOLLING=true CONFIG_PATH=./config.yaml ts-node-dev --respawn --ignore-watch ./data/ -- ./src/index.ts",
"start:prod": "NODE_ENV=production node ./dist/index.js"
},
"volta": {
"node": "18"
},
"dependencies": {
"@types/convict-format-with-validator": "^6.0.2",
"@types/require-dir": "^1.0.2",
"awilix": "^8.0.0",
"convict": "^6.2.4",
"convict-format-with-validator": "^6.2.0",
"debug": "^4.3.4",
"glob-to-regexp": "^0.4.1",
"js-yaml": "^4.1.0",
"mqtt": "^4.3.7",
"ms": "^2.1.2",
"observable-websocket": "^0.1.3",
"require-dir": "^1.2.0",
"rxjs": "^7.8.0",
"ws": "^8.12.0"
},
"devDependencies": {
"@types/convict": "^6.1.1",
"@types/debug": "^4.1.7",
"@types/glob-to-regexp": "^0.4.1",
"@types/jest": "^29.4.0",
"@types/js-yaml": "^4.0.5",
"@types/ms": "^0.7.31",
"@types/node": "^18.13.0",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
}
}