-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.34 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.34 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
{
"name": "cntrl",
"private": true,
"scripts": {
"build": "turbo run build",
"build:bridge": "pnpm --filter=@cntrl-pw/bridge tauri:build",
"dev": "turbo run dev --parallel",
"dev:web": "turbo run dev --filter=@cntrl-pw/web",
"dev:hub": "turbo run dev --filter=@cntrl-pw/hub",
"dev:rhub": "turbo run dev --filter=@cntrl-pw/rhub",
"dev:docs": "turbo run dev --filter=@cntrl-pw/docs",
"dev:bridge": "pnpm --filter=@cntrl-pw/bridge run tauri:dev",
"lint": "turbo run lint",
"format": "prettier --write .",
"check-types": "turbo run check-types",
"check": "pnpm format && turbo run lint && turbo run check-types",
"prepare": "husky",
"deps": "pnpm dlx taze@latest -Ilwr",
"deps:major": "pnpm dlx taze@latest major -Ilwr",
"ui": "pnpm --filter=@cntrl-pw/ui run ui",
"ui:web": "pnpm --filter=@cntrl-pw/web run ui",
"ui:hub": "pnpm --filter=@cntrl-pw/hub run ui",
"ui:rhub": "pnpm --filter=@cntrl-pw/rhub run ui"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write"
},
"devDependencies": {
"husky": "catalog:",
"lint-staged": "catalog:",
"prettier": "catalog:",
"prettier-plugin-organize-imports": "catalog:",
"prettier-plugin-tailwindcss": "catalog:",
"turbo": "catalog:"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22"
}
}