Stock/deno.json

30 lines
1.2 KiB
JSON
Raw Permalink Normal View History

2023-07-23 00:32:54 +09:00
{
"lock": false,
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts",
2023-07-25 18:18:06 +09:00
"prod_start": "deno run -A main.ts",
2023-10-26 22:12:16 +09:00
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts"
2023-07-23 00:32:54 +09:00
},
2023-10-26 22:12:16 +09:00
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
2023-07-23 00:32:54 +09:00
"imports": {
2023-10-26 22:12:16 +09:00
"$fresh/": "https://deno.land/x/fresh@1.5.2/",
"preact": "https://esm.sh/preact@10.18.1",
"preact/": "https://esm.sh/preact@10.18.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.1",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.0",
2023-07-24 09:10:32 +09:00
"auto-animate": "https://esm.sh/@formkit/auto-animate@0.7.0",
"auto-animate/": "https://esm.sh/@formkit/auto-animate@0.7.0/",
2023-07-23 00:32:54 +09:00
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/",
2023-10-26 22:12:16 +09:00
"$std/": "https://deno.land/std@0.203.0/",
2023-10-26 23:58:33 +09:00
"kysely": "npm:kysely@^0.26.3",
"kysely/helpers/sqlite": "npm:kysely@^0.26.3/helpers/sqlite",
"sqlite": "https://deno.land/x/sqlite@v3.8/mod.ts"
2023-07-23 00:32:54 +09:00
},
2023-10-26 22:12:16 +09:00
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"]
2023-07-23 00:32:54 +09:00
}