-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
47 lines (47 loc) · 1.45 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
{
"name": "@home-assistant-matter-hub/root",
"version": "dev",
"private": true,
"type": "module",
"scripts": {
"enable-remote-caching": "nx login",
"cleanup": "nx run-many -t cleanup --parallel 100 && nx reset && npx rimraf .local-storage node_modules",
"lint": "nx run-many -t lint && prettier . --check",
"lint:fix": "nx run-many -t lint:fix && prettier . --write",
"prettier": "prettier . --check",
"test": "nx run-many -t test",
"build": "nx run-many -t build",
"release": "nx release --verbose",
"serve": "nx run-many -t serve --output-style=stream --parallel=100",
"serve:production": "nx run home-assistant-matter-hub:start --skip-nx-cache",
"check-updates": "npx npm-check-updates --workspaces --root"
},
"workspaces": [
"apps/**",
"packages/**",
"utils/**"
],
"devDependencies": {
"@dotenvx/dotenvx": "^1.29.0",
"@eslint/js": "^9.16.0",
"@nx/js": "20.2.2",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.10.1",
"@swc/helpers": "~0.5.15",
"esbuild": "^0.24.0",
"esbuild-plugin-noexternal": "^0.1.6",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"nx": "20.2.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"vite": "^6.0.3",
"vitest": "^2.1.8"
}
}