-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
33 lines (33 loc) · 1.09 KB
/
Copy pathdeno.json
File metadata and controls
33 lines (33 loc) · 1.09 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
30
31
32
33
{
"workspace": [
"./src/shared",
"./src/web",
"./supabase/functions"
],
"tasks": {
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts",
"start": "supabase start",
"down": "supabase stop",
"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 && deno run format"
},
"nodeModulesDir": "auto",
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.12",
"@supabase/supabase-js": "jsr:@supabase/supabase-js@^2.49.3"
},
"fmt": {
"indentWidth": 2,
"singleQuote": false,
"useTabs": false,
"semiColons": true,
"include": ["src/", "supabase/"]
}
}