-
Notifications
You must be signed in to change notification settings - Fork 516
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 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
{
"name": "@supabase/root",
"private": true,
"scripts": {
"build": "pnpm exec turbo run build",
"generate": "pnpm exec turbo run @supabase/api#generate && pnpm exec turbo run @supabase/docs#generate",
"test:live": "pnpm exec turbo run supabase#test:live --concurrency=1 --",
"record": "pnpm exec turbo run @supabase/cli-e2e#record --",
"test:smoke": "pnpm exec turbo run supabase#test:smoke --",
"dev:docs": "pnpm exec turbo run @supabase/docs#dev",
"test:unit": "pnpm exec turbo run test:unit:run --filter=!@supabase/cli-go --",
"test:integration": "pnpm exec turbo run test:integration:run --",
"test:e2e": "pnpm exec turbo run supabase#build && pnpm exec turbo run test:e2e:run --only --concurrency=1 --",
"check:all": "pnpm exec turbo run types:check lint:check fmt:check knip:check",
"fix:all": "pnpm exec turbo run lint:fix fmt:fix knip:fix",
"lint:check": "oxlint --config .oxlintrc.json",
"lint:fix": "oxlint --config .oxlintrc.json --fix",
"fmt:check": "oxfmt --config .oxfmtrc.json --check",
"fmt:fix": "oxfmt --config .oxfmtrc.json",
"knip:check": "knip-bun",
"knip:fix": "knip-bun --fix",
"repos:install": "git submodule update --init --recursive",
"repos:pull": "git submodule update --remote",
"local-registry": "bun tools/release/local-registry.ts",
"cli-release": "bun tools/release/local-release.ts"
},
"devDependencies": {
"knip": "catalog:",
"nx": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"pkg-pr-new": "0.0.88",
"turbo": "catalog:",
"typescript": "catalog:",
"verdaccio": "^6.9.3"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "24"
}
},
"packageManager": "pnpm@11.4.0"
}