-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
72 lines (72 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"exclude": [
".git/**/*",
".github/**/*",
".vscode/**/*",
"**/_fresh/**/*",
"**/scratch/**/*",
"**/*.json",
"**/*.jsonc",
"**/*.md",
"**/_fresh/*"
],
"lock": false,
"fmt": {
"lineWidth": 120
},
"tasks": {
"clean": "npx rimraf ./_fresh",
"check": "deno fmt --check && deno lint && deno check --unstable-kv dev.ts",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable-kv -A -",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --unstable-kv --watch=static/,routes/ dev.ts",
"build": "deno run -A --unstable-kv dev.ts build",
"preview": "deno run -A --unstable-kv main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.2/",
"preact": "https://esm.sh/preact@10.24.1",
"preact/": "https://esm.sh/preact@10.24.1/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.3.0",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.8.0",
"tailwindcss": "npm:tailwindcss@3.4.13",
"tailwindcss/": "npm:/tailwindcss@3.4.13/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.13/plugin.js",
"@tailwindcss/forms": "npm:@tailwindcss/forms@0.5.9",
"$std/": "https://deno.land/std@0.224.0/",
"escape": "https://deno.land/x/escape@1.4.2/mod.ts",
"icons/": "https://deno.land/x/tabler_icons_tsx@0.0.7/tsx/",
"@components/": "./components/",
"@db": "./db/db.ts",
"@data": "./db/data.ts",
"@islands/": "./islands/",
"@lib/": "./lib/",
"@static/": "./static/"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto",
"deploy": {
"project": "7a27ec5c-40ee-4c1c-988b-63d476d01c6b",
"exclude": [
"**/db/**/*.db"
],
"include": [],
"entrypoint": "main.ts"
},
"githooks": {
"$schema": "https://deno.land/x/githooks/schema.json",
"pre-commit": "check"
}
}