memorium/deno.json

48 lines
1.5 KiB
JSON
Raw Normal View History

2023-07-26 13:47:01 +02:00
{
"lock": false,
2023-12-14 13:49:38 +01:00
"nodeModulesDir": true,
2023-07-26 13:47:01 +02:00
"tasks": {
2023-09-08 13:33:29 +02:00
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
2023-07-26 13:47:01 +02:00
"start": "deno run -A --watch=static/,routes/ dev.ts",
2023-08-17 20:59:52 +02:00
"build": "deno run -A dev.ts build",
2023-09-08 13:33:29 +02:00
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
2023-07-26 13:47:01 +02:00
},
2023-12-14 13:49:38 +01:00
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
2023-07-26 13:47:01 +02:00
"imports": {
2023-08-06 17:47:26 +02:00
"typesense": "https://raw.githubusercontent.com/bradenmacdonald/typesense-deno/main/mod.ts",
2023-08-05 02:14:10 +02:00
"yaml": "https://deno.land/std@0.197.0/yaml/mod.ts",
2023-08-10 14:37:52 +02:00
"@lib": "./lib",
"@lib/": "./lib/",
"@components": "./components",
"@components/": "./components/",
"@islands": "./islands",
"@islands/": "./islands/",
"zod": "https://deno.land/x/zod@v3.21.4/mod.ts",
2023-12-08 21:22:04 +01:00
"$fresh/": "https://deno.land/x/fresh@1.6.1/",
"preact": "https://esm.sh/preact@10.19.2",
"preact/": "https://esm.sh/preact@10.19.2/",
2023-10-13 16:09:50 +02:00
"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-12-14 13:49:38 +01:00
"$std/": "https://deno.land/std@0.193.0/",
"tailwindcss": "npm:tailwindcss@3.3.5",
"tailwindcss/": "npm:/tailwindcss@3.3.5/",
"tailwindcss/plugin": "npm:/tailwindcss@3.3.5/plugin.js"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
2023-07-26 13:47:01 +02:00
},
2023-12-14 13:49:38 +01:00
"exclude": [
"**/_fresh/*"
]
2023-09-08 13:33:29 +02:00
}