generated from 9renpoto/.59
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
42 lines (42 loc) · 1.22 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
{
"$schema": "https://deno.land/x/deno/cli/schemas/config-file.v1.json",
"nodeModulesDir": true,
"tasks": {
"start": "deno run -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"lint": "deno run -A npm:textlint",
"preview": "deno run -A main.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"imports": {
"$fresh-testing-library/": "https://deno.land/x/[email protected]/",
"$fresh/": "https://deno.land/x/[email protected]/",
"$fresh_seo": "https://deno.land/x/[email protected]/mod.ts",
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts",
"./": "./",
"@/": "./",
"@deno/gfm": "jsr:@deno/gfm@^0.8.2",
"@preact/signals": "npm:@preact/signals@^1.3.0",
"@preact/signals-core": "npm:@preact/signals-core@^1.7.0",
"@std/front-matter": "jsr:@std/front-matter@^0.224.3",
"@std/path": "jsr:@std/path@^1.0.0",
"@std/testing": "jsr:@std/testing@^0.225.3",
"preact": "npm:preact@^10.22.1",
"tailwindcss": "npm:tailwindcss@^3.4.6"
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"exclude": [
"**/_fresh/*",
"cache"
]
}