-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
42 lines (42 loc) · 1.12 KB
/
deno.json
File metadata and controls
42 lines (42 loc) · 1.12 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
{
"tasks": {
"check": "deno fmt --check && deno lint && deno check",
"fmt": "deno fmt",
"precommit": "deno fmt && deno lint && deno check **/*.ts && deno check **/*.tsx",
"prepare": "deno run -A npm:husky install",
"dev": "vite",
"build": "vite build",
"preview": "deno serve -A _fresh/server.js",
"update": "deno run -A -r jsr:@fresh/update .",
"deploy": "deno run -A npm:wrangler deploy"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*",
"**/node_modules/*",
".husky/*"
],
"imports": {
"@fresh/plugin-tailwind": "jsr:@fresh/plugin-tailwind@^1.0.0",
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@^1.0.8",
"preact": "npm:preact@^10.28.3",
"preact/": "https://esm.sh/preact@10.22.0/",
"@preact/signals": "npm:@preact/signals@^2.7.1",
"$std/": "https://deno.land/std@0.216.0/",
"fresh": "jsr:@fresh/core@^2.2.2",
"vite": "npm:vite@7.3.2",
"@/": "./"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto"
}