-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
50 lines (50 loc) · 1.55 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
{
"tasks": {
"start": "deno run -A --unstable --watch=static/,routes/ dev.ts",
"run": "DENO_DEPLOYMENT_ID=$(git rev-parse --short HEAD) deno run -A --unstable main.ts",
"test": "deno test -A --unstable",
"build": "deno run -A dev.ts build",
"preview": "deno run -A --unstable main.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"fmt": {
"semiColons": false,
"exclude": [
"_fresh"
]
},
"lock": false,
"imports": {
"@/": "./",
"$fresh/": "https://deno.land/x/[email protected]/",
"$std/": "https://deno.land/[email protected]/",
"$icons/": "https://deno.land/x/[email protected]/tsx/",
"fresh_seo": "https://deno.land/x/[email protected]/mod.ts",
"fresh_marionette": "https://deno.land/x/[email protected]/mod.js",
"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]/",
"puppeteer": "https://deno.land/x/[email protected]/mod.ts",
"envalid": "https://deno.land/x/[email protected]/mod.ts",
"qs": "https://esm.sh/[email protected]",
"marked": "https://esm.sh/[email protected]"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
},
"exclude": [
"_fresh"
]
}
}