-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeno.json
51 lines (51 loc) · 1.93 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
43
44
45
46
47
48
49
50
51
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"start": "deno run -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"exclude": ["prefer-const"]
},
"exclude": [
"_fresh"
]
},
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"twind": "https://esm.sh/[email protected]",
"twind/": "https://esm.sh/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"@headlessui/react": "https://esm.sh/@headlessui/react?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat&external=preact",
"icons": "https://esm.sh/@heroicons/[email protected]/24/solid?alias=react:preact/compat&exports=ArrowPathIcon,CheckIcon,ChevronUpIcon,ChevronDownIcon,ChevronUpDownIcon,InformationCircleIcon",
"react-confetti-explosion": "https://esm.sh/react-confetti-explosion?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat&external=preact",
"fetch-retry": "https://esm.sh/fetch-retry",
"swr": "https://esm.sh/swr?alias=react:preact/compat&external=preact",
"components/": "./components/",
"utils/": "./utils/",
"api": "./utils/api.js",
"islands/": "./islands/",
"juani/": "https://esm.sh/gh/juanidambrosio/smileshelper/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"fmt": {
"exclude": [
"_fresh"
]
}
}