This is my personal website
1{
2 "lock": false,
3 "tasks": {
4 "check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
5 "cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
6 "manifest": "deno task cli manifest $(pwd)",
7 "start": "deno run -A --watch=static/,routes/ dev.ts",
8 "build": "deno run -A dev.ts build",
9 "preview": "deno run -A main.ts",
10 "update": "deno run -A -r https://fresh.deno.dev/update ."
11 },
12 "lint": {
13 "rules": {
14 "tags": [
15 "fresh",
16 "recommended"
17 ]
18 }
19 },
20 "exclude": [
21 "**/_fresh/*"
22 ],
23 "imports": {
24 "$fresh/": "https://deno.land/x/fresh@1.7.3/",
25 "dayjs": "npm:dayjs@^1.11.13",
26 "lodash": "npm:lodash@^4.17.21",
27 "preact": "https://esm.sh/preact@10.22.0",
28 "preact/": "https://esm.sh/preact@10.22.0/",
29 "@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
30 "@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
31 "tailwindcss": "npm:tailwindcss@3.4.1",
32 "tailwindcss/": "npm:/tailwindcss@3.4.1/",
33 "tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
34 "$std/": "https://deno.land/std@0.216.0/",
35 "ga/": "https://deno.land/x/fresh_ga@0.2.6/"
36 },
37 "compilerOptions": {
38 "jsx": "react-jsx",
39 "jsxImportSource": "preact"
40 },
41 "nodeModulesDir": "auto"
42}