-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
42 lines (42 loc) · 1.78 KB
/
deno.json
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
34
35
36
37
38
39
40
41
42
{
"lock": false,
"tasks": {
"start": "deno run --env -A --unstable-kv --watch=static/,routes/ dev.ts",
"update": "deno run --env -A -r https://fresh.deno.dev/update .",
"build": "deno run -A --unstable-kv dev.ts build",
"preview": "deno run --env -A --unstable-kv main.ts"
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"preact": "https://esm.sh/preact@10.19.2",
"preact/": "https://esm.sh/preact@10.19.2/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.1",
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3",
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/",
"$std/": "https://deno.land/std@0.193.0/",
"icons/": "https://deno.land/x/tabler_icons_tsx@0.0.3/tsx/",
"ga4/": "https://raw.githubusercontent.com/Jabolol/ga4/main/",
"std/": "https://deno.land/std@0.197.0/",
"charts/": "https://deno.land/x/fresh_charts@0.3.1/",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:tailwindcss@3.4.1/plugin.js",
"zod": "npm:zod",
"~/": "./",
"@twind/core": "https://esm.sh/@twind/core@1.1.3",
"@twind/preset-tailwind": "https://esm.sh/@twind/preset-tailwind@1.1.4/",
"@twind/preset-autoprefix": "https://esm.sh/@twind/preset-autoprefix@1.0.7/",
"happy-headers": "npm:happy-headers"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"exclude": ["**/_fresh/*"],
"deploy": {
"project": "9ab14b2a-b0d9-4e55-83ec-7f25f7ad1d52",
"exclude": ["**/node_modules"],
"include": [],
"entrypoint": "main.ts"
}
}