-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 1.38 KB
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
{
"name": "goodgame",
"description": "Goodreads-style gaming backlog tracker built with Expo, Supabase, and TypeScript.",
"packageManager": "pnpm@10.33.2",
"private": true,
"scripts": {
"start": "pnpm --dir mobile run start",
"setup:phone": "bash scripts/setup-android-phone.sh",
"start:dev:tunnel": "pnpm --dir mobile exec expo start --dev-client --tunnel",
"web": "pnpm --dir mobile run web",
"android": "pnpm --dir mobile run android",
"ios": "pnpm --dir mobile run ios",
"build:web": "pnpm --dir mobile run build:web",
"test": "pnpm --dir mobile run test",
"eas:login": "pnpm --dir mobile run eas:login",
"eas:configure": "pnpm --dir mobile run eas:configure",
"android:credentials": "pnpm --dir mobile run android:credentials",
"dev:android:build:local": "bash scripts/build-android-dev-local.sh",
"build:android": "pnpm --dir mobile run build:android",
"typecheck": "pnpm --dir mobile exec tsc --noEmit",
"lint": "pnpm --dir mobile exec eslint . --ext .ts,.tsx",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:reset": "supabase db reset",
"db:push": "supabase db push && supabase db push --local",
"db:types": "supabase gen types typescript --project-id zjluauqdqockjswczndb > mobile/types/supabase.ts",
"db:types:local": "supabase gen types typescript --local > mobile/types/supabase.ts"
}
}