-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
24 lines (24 loc) · 888 Bytes
/
deno.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
{
"workspace": [
"./src/shared",
"./src/web",
"./supabase/functions"
],
"tasks": {
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/[email protected]/mod.ts",
"dev": "supabase start",
"serve": "supabase functions serve --no-verify-jwt",
"studio": "open http://localhost:54323",
"tests": "deno test --allow-all supabase/functions/tests/*",
"format": "deno fmt src/* supabase/*",
"lint": "deno lint src/* supabase/*",
"migration": "supabase migration new",
"migrate": "supabase migration up",
"update-types-local": "supabase gen types typescript --local > src/shared/db.types.ts",
"update-types-linked": "supabase gen types typescript --linked > src/shared/db.types.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@supabase/supabase-js": "jsr:@supabase/supabase-js@^2.48.1"
}
}