forked from psteinroe/supabase-cache-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.7 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
36
37
38
39
40
41
{
"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",
"lint": "turbo run lint",
"lint:report": "turbo run lint:report",
"lint:fix": "turbo run lint:fix",
"fix": "turbo run format:write lint:fix",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test --concurrency=1",
"format:write": "turbo run format:write",
"format:check": "turbo run format:check",
"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",
"ci:release": "changeset publish"
},
"devDependencies": {
"eslint": "8.54.0",
"prettier": "3.2.0",
"@changesets/cli": "2.27.0",
"turbo": "1.10.16"
},
"engines": {
"pnpm": "8",
"node": ">=14.0.0"
},
"packageManager": "pnpm@8"
}