2023-07-26 13:47:01 +02:00
|
|
|
{
|
|
|
|
"lock": false,
|
2025-01-05 14:59:05 +01:00
|
|
|
"nodeModulesDir": "auto",
|
2025-01-25 00:00:04 +01:00
|
|
|
"unstable": [
|
|
|
|
"cron"
|
|
|
|
],
|
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",
|
2025-01-05 18:03:59 +01:00
|
|
|
"start": "deno run --env-file -A --watch=static/,routes/ dev.ts",
|
|
|
|
"db": "deno run --env-file -A npm:drizzle-kit",
|
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
|
|
|
},
|
2025-01-05 14:59:05 +01:00
|
|
|
"lint": {
|
|
|
|
"rules": {
|
|
|
|
"tags": [
|
|
|
|
"fresh",
|
|
|
|
"recommended"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2023-07-26 13:47:01 +02:00
|
|
|
"imports": {
|
2025-01-05 14:59:05 +01:00
|
|
|
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
|
2023-08-10 14:37:52 +02:00
|
|
|
"@components": "./components",
|
|
|
|
"@components/": "./components/",
|
2025-01-05 14:59:05 +01:00
|
|
|
"@denosaurs/emoji": "jsr:@denosaurs/emoji@^0.3.1",
|
2023-08-10 14:37:52 +02:00
|
|
|
"@islands": "./islands",
|
|
|
|
"@islands/": "./islands/",
|
2024-06-21 11:36:23 +02:00
|
|
|
"@lib": "./lib",
|
|
|
|
"@lib/": "./lib/",
|
2025-01-05 18:03:59 +01:00
|
|
|
"@libsql/client": "npm:@libsql/client@^0.14.0",
|
2024-06-21 11:16:01 +02:00
|
|
|
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
|
|
|
|
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
|
2025-01-05 14:59:05 +01:00
|
|
|
"@std/http": "jsr:@std/http@^1.0.12",
|
|
|
|
"@std/yaml": "jsr:@std/yaml@^1.0.5",
|
2025-01-05 18:03:59 +01:00
|
|
|
"drizzle-kit": "npm:drizzle-kit@^0.30.1",
|
|
|
|
"drizzle-orm": "npm:drizzle-orm@^0.38.3",
|
2025-01-05 23:14:19 +01:00
|
|
|
"fuzzysort": "npm:fuzzysort@^3.1.0",
|
2025-01-18 00:46:05 +01:00
|
|
|
"playwright": "npm:playwright@^1.49.1",
|
|
|
|
"playwright-extra": "npm:playwright-extra@^4.3.6",
|
2025-01-05 14:59:05 +01:00
|
|
|
"preact": "https://esm.sh/preact@10.22.0",
|
2024-06-21 11:36:23 +02:00
|
|
|
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
|
2025-01-05 14:59:05 +01:00
|
|
|
"preact/": "https://esm.sh/preact@10.22.0/",
|
|
|
|
"gfm": "jsr:@deno/gfm",
|
2025-01-18 00:46:05 +01:00
|
|
|
"puppeteer-extra-plugin-stealth": "npm:puppeteer-extra-plugin-stealth@^2.11.2",
|
2025-01-05 14:59:05 +01:00
|
|
|
"tailwindcss": "npm:tailwindcss@^3.4.17",
|
|
|
|
"tailwindcss/": "npm:/tailwindcss@^3.4.17/",
|
|
|
|
"tailwindcss/plugin": "npm:/tailwindcss@^3.4.17/plugin.js",
|
|
|
|
"camelcase-css": "npm:camelcase-css",
|
2025-01-05 18:03:59 +01:00
|
|
|
"tsx": "npm:tsx@^4.19.2",
|
2024-06-21 11:36:23 +02:00
|
|
|
"yaml": "https://deno.land/std@0.197.0/yaml/mod.ts",
|
2025-01-18 00:46:05 +01:00
|
|
|
"zod": "npm:zod@^3.24.1",
|
|
|
|
"domparser": "https://deno.land/x/deno_dom@v0.1.48/deno-dom-wasm.ts",
|
2025-01-05 18:03:59 +01:00
|
|
|
"fs": "https://deno.land/std/fs/mod.ts",
|
|
|
|
"imagemagick": "https://deno.land/x/imagemagick_deno@0.0.31/mod.ts"
|
2023-12-14 13:49:38 +01:00
|
|
|
},
|
2025-01-05 14:59:05 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "preact"
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/_fresh/*"
|
|
|
|
]
|
2023-09-08 13:33:29 +02:00
|
|
|
}
|