This commit is contained in:
giancarlo
2024-03-24 02:23:22 +08:00
parent 648d77b430
commit bce3479368
589 changed files with 37067 additions and 9596 deletions

19
supabase/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "@kit/supabase-config",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "supabase status || supabase start",
"stop": "supabase stop",
"reset": "supabase db reset || supabase start",
"status": "supabase status",
"test": "supabase db test",
"lint": "supabase db lint",
"lint:report": "supabase db lint",
"deploy": "supabase link --project-ref $SUPABASE_PROJECT_REF && supabase db push",
"typegen": "supabase gen types typescript --local > ../packages/supabase/src/database.types.ts"
},
"dependencies": {
"supabase": "^1.150.0"
}
}