-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.77 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
{
"type": "module",
"name": "home_automation",
"version": "24.11.1",
"homepage": "https://docs.digital-alchemy.app",
"description": "Demonstration home automation project tuned for HAOS",
"scripts": {
"build": "./scripts/deploy.sh",
"typecheck": "tsc --skipLibCheck --noEmit",
"watch": "nodemon --exec tsx src/main.ts",
"dev": "tsx src/main.mts",
"format": "eslint --fix src/",
"lint": "eslint src/",
"rollback": "./scripts/rollback.sh",
"type-writer": "npx type-writer",
"upgrade": "./scripts/update_deps.sh",
"prepare": "husky install"
},
"license": "MIT",
"dependencies": {
"@digital-alchemy/automation": "^24.11.1",
"@digital-alchemy/core": "^24.11.4",
"@digital-alchemy/hass": "^24.11.4",
"@digital-alchemy/mqtt-extension": "^24.11.1",
"@digital-alchemy/synapse": "^24.11.4",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"ini": "^5.0.0",
"node-cron": "^3.0.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@digital-alchemy/type-writer": "^24.11.3",
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unicorn": "^56.0.1",
"figlet-cli": "^0.2.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lolcatjs": "^2.4.3",
"nodemon": "^3.1.7",
"prettier": "^3.4.1",
"tslib": "^2.8.1",
"tsx": "^4.19.2",
"type-fest": "^4.29.0",
"typescript": "^5.7.2"
},
"packageManager": "yarn@4.5.0"
}