Files
myeasycms-v2/supabase/package.json
giancarlo 041efb89fb Remove team account related services and actions
Removed services and actions related to team account deletion as well as updated paths within other dependent files, better reflecting their new locations. Also, added a new service titled 'AccountBillingService' for handling billing-related operations and restructured the form layout and handled translation in 'team-account-danger-zone' component.
2024-03-28 15:27:56 +08:00

19 lines
601 B
JSON

{
"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.151.1"
}
}