-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.jsonc
33 lines (33 loc) · 1.32 KB
/
deno.jsonc
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
{
"tasks": {
"prisma": "deno task --cwd prisma prisma",
"dev": "deno run --allow-read --allow-env --allow-run --allow-sys dev.ts",
"dev-web": "deno run -A --watch=web/static/,web/routes/ web/dev.ts"
},
"lock": false,
"compilerOptions": {
"jsxImportSource": "preact",
"jsx": "react-jsx"
},
"imports": {
"~/": "./",
"web/": "./web/",
"std/": "https://deno.land/[email protected]/",
"abitype": "https://esm.sh/v130/[email protected]",
"abitype/": "https://esm.sh/v130/[email protected]/",
"viem": "https://esm.sh/v130/[email protected]",
"viem/": "https://esm.sh/v130/[email protected]/",
"amqp/": "https://deno.land/x/[email protected]/",
"bencodex": "https://deno.land/x/[email protected]/mod.ts",
"oak": "https://deno.land/x/[email protected]/mod.ts",
"fresh/": "https://deno.land/x/[email protected]/",
"fresh-session": "https://deno.land/x/[email protected]/mod.ts",
"preact": "https://esm.sh/v130/[email protected]",
"preact/": "https://esm.sh/v130/[email protected]/",
"preact-render-to-string": "https://esm.sh/v130/*[email protected]",
"@preact/signals": "https://esm.sh/v130/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/v130/*@preact/[email protected]",
"twind": "https://esm.sh/v130/[email protected]",
"twind/": "https://esm.sh/v130/[email protected]/"
}
}