-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.76 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.76 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"type": "module",
"name": "home_automation",
"version": "24.9.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.ts",
"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": "^25.3.1",
"@digital-alchemy/core": "^25.5.1",
"@digital-alchemy/hass": "^25.5.1",
"@digital-alchemy/mqtt-extension": "^25.1.1",
"@digital-alchemy/synapse": "^25.3.1",
"dayjs": "^1.11.13",
"dotenv": "^16.5.0",
"ini": "^5.0.0",
"node-cron": "^4.0.2",
"ws": "^8.18.2"
},
"devDependencies": {
"@digital-alchemy/type-writer": "^25.3.2",
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.26.0",
"@types/node": "^22.15.17",
"@types/node-cron": "^3.0.11",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "8.32.0",
"@typescript-eslint/parser": "8.32.0",
"eslint": "9.26.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-unicorn": "^59.0.1",
"figlet-cli": "^0.3.0",
"globals": "^16.1.0",
"husky": "^9.1.7",
"lolcatjs": "^2.4.3",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"tslib": "^2.8.1",
"tsx": "^4.19.4",
"type-fest": "^4.41.0",
"typescript": "^5.8.3"
},
"packageManager": "yarn@4.9.1"
}