Files
myeasycms-v2/supabase/package.json
giancarlo caca7c12f6 Optimize team account settings for localization
Applied i18n translation to team account settings for improved multi-language support. The changes include replacing static text with translated keys in team account settings container, and adding new translation keys in language files. Minor changes include modification in package scripts and styling fixes.
2024-03-28 16:48:50 +08:00

18 lines
565 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",
"db:lint": "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"
}
}