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
42 lines (42 loc) · 1.37 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.37 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"env": "bun env.ts",
"lint": "biome lint .",
"format": "pnpm biome format . --write && pnpm biome check . --write ",
"format:fix": "pnpm biome check --fix --unsafe .",
"lint:fix": "pnpm biome lint --write --unsafe .",
"lint:turbo": "turbo run lint",
"lint:oxc": "oxlint .",
"lint:oxc-type": "oxlint . --type-aware --fix --fix-suggestions",
"format:oxc": "oxfmt --check",
"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": {
"@biomejs/biome": "1.8.3",
"@turbo/gen": "1.13.3",
"oxfmt": "0.20.0",
"oxlint": "1.36.0",
"oxlint-tsgolint": "0.10.1",
"@types/node": "24.0.8",
"knip": "5.75.1",
"turbo": "2.6.3",
"typescript": "5.9.3"
},
"packageManager": "pnpm@10.26.0",
"pnpm": {
"onlyBuiltDependencies": ["@sentry/cli", "@swc/core", "sharp"]
},
"name": "openstatus",
"workspaces": ["apps/*", "packages/**/*", "packages/config/*"],
"overrides": {
"@react-email/preview-server": "npm:next@16.0.10"
}
}