forked from openstatusHQ/openstatus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "openstatus",
"private": true,
"workspaces": [
"apps/*",
"packages/**/*",
"packages/config/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"env": "bun env.ts",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"lint:type": "oxlint --type-aware",
"format": "oxfmt && oxlint --fix",
"format:check": "oxfmt --check && oxlint",
"lint:turbo": "turbo run lint",
"dev:web": "turbo run dev --filter='./apps/web' --filter='./packages/db'",
"dev:status-page": "turbo run dev --filter='./apps/status-page' --filter='./packages/db'",
"dev:dashboard": "turbo run dev --filter='./apps/dashboard' --filter='./packages/db'",
"dx": "turbo run dx",
"tsc": "tsc",
"test": "turbo run test"
},
"devDependencies": {
"@turbo/gen": "catalog:",
"@types/node": "catalog:",
"knip": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"turbo": "2.9.14",
"typescript": "catalog:"
},
"packageManager": "pnpm@11.2.1"
}