-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
35 lines (35 loc) · 1.53 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
{
"name": "supabase-cache-helpers",
"homepage": "https://supabase-cache-helpers.vercel.app",
"version": "0.0.0",
"private": true,
"workspaces": ["packages/*"],
"scripts": {
"turbo": "turbo",
"build": "turbo run build",
"build:packages": "turbo run build --filter='./packages/*'",
"dev": "turbo run dev --parallel",
"check": "biome check",
"fix": "biome check --write",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test --concurrency=1",
"typegen": "supabase gen types typescript --local > packages/postgrest-swr/__tests__/database.types.ts && supabase gen types typescript --local > packages/postgrest-react-query/__tests__/database.types.ts && supabase gen types typescript --local > packages/postgrest-core/__tests__/database.types.ts && supabase gen types typescript --local > examples/swr/types/database.ts && supabase gen types typescript --local > examples/react-query/types/database.ts",
"clear-branches": "git branch --merged | egrep -v \"(^\\*|main)\" | xargs git branch -d",
"merge-main": "git fetch origin main:main && git merge main",
"reset-git": "git checkout main && git pull && pnpm run clear-branches",
"changeset": "changeset",
"ci:version": "changeset version && pnpm run fix",
"ci:release": "changeset publish"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "2.27.0",
"supabase": "latest",
"turbo": "2.0.6"
},
"engines": {
"pnpm": "8",
"node": ">=20.0.0"
},
"packageManager": "[email protected]"
}