-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
47 lines (47 loc) · 2.56 KB
/
deno.json
File metadata and controls
47 lines (47 loc) · 2.56 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"lock": false,
"tasks": {
"win": "deno run --watch=static/,routes/ --allow-env --allow-read --allow-write=.,$LOCALAPPDATA/Temp --allow-run=$(where deno),$LOCALAPPDATA/Cache/esbuild/bin/esbuild-windows-64@0.19.4 --allow-net=:8000,deno.land,esm.sh,accounts.google.com,www.googleapis.com,cdn.jsdelivr.net,$SUPABASE_HOST dev.ts",
"arm": "deno run --watch=static/,routes/ --allow-env --allow-read --allow-write=.,/tmp --allow-run=deno,$HOME/.cache/esbuild/bin/esbuild-linux-arm64@0.19.4 --allow-net=:8000,deno.land,esm.sh,accounts.google.com,www.googleapis.com,cdn.jsdelivr.net,$SUPABASE_HOST dev.ts",
"linux": "export $(grep -v ^# .env) && deno run --watch=static/,routes/ --allow-env -R -W=.,$HOME/.cache/fresh,$HOME/.cache/esbuild --allow-run=$HOME/.deno/bin/deno,$HOME/.cache/esbuild/bin/@esbuild-linux-x64@0.20.2 -N=:8000,deno.land,dl.deno.land,esm.sh,accounts.google.com,www.googleapis.com,cdn.jsdelivr.net,$SUPABASE_HOST,registry.npmjs.org dev.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "date --iso-8601='seconds' > static/build.txt && deno run -A dev.ts build",
"env": "env",
"preview": "export $(grep -v ^# .env) && deno run -A main.ts",
"sb-gen": "export $(grep -v ^# .env) && supabase gen types typescript --project-id $SUPABASE_PROJECT_ID > server/database.types.ts"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"imports": {
"$std/": "https://deno.land/std@0.216.0/",
"supabase-js": "https://esm.sh/v133/@supabase/supabase-js@2.38.4",
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"preact": "https://esm.sh/preact@10.22.0",
"preact/": "https://esm.sh/preact@10.22.0/",
"preact/jsx-runtime": "https://esm.sh/preact@10.22.0/jsx-runtime",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.8.0",
"@trpc/server": "https://esm.sh/v114/@trpc/server@10.18.0",
"@trpc/server/": "https://esm.sh/v114/@trpc/server@10.18.0/",
"@trpc/client": "https://esm.sh/v114/@trpc/client@10.18.0",
"zod": "https://deno.land/x/zod@v3.20.2/mod.ts",
"highlightjs": "https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.7.0/build/highlight.min.js",
"sanitize-html": "https://esm.sh/v114/sanitize-html@2.8.1?target=esnext",
"marked": "https://esm.sh/v114/marked@4.2.12",
"mousetrap": "https://esm.sh/v114/mousetrap@1.6.5",
"~/": "./"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"exclude": [
"**/_fresh/*"
]
}