-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
51 lines (51 loc) · 2.04 KB
/
deno.json
File metadata and controls
51 lines (51 loc) · 2.04 KB
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/fresh@1.4.3/",
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
"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/",
"@headlessui/react": "https://esm.sh/@headlessui/react@1.7.17?alias=react:preact/compat,react-dom:preact/compat,@types/react:preact/compat&external=preact",
"icons": "https://esm.sh/@heroicons/react@2.0.18/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/",
"p-throttle": "https://esm.sh/p-throttle",
"playwright": "https://esm.sh/playwright@1.52.0"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"fmt": {
"exclude": ["_fresh"]
},
"deploy": {
"project": "smiles-search",
"exclude": ["**/node_modules"],
"entrypoint": "main.ts"
}
}