-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
61 lines (61 loc) · 2.98 KB
/
deno.jsonc
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
{
"lock": false,
"tasks": {
"start": "deno -A --watch=static/,routes/ dev.ts",
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"hooks:install": "deno -R=deno.json,deno.jsonc,.git/hooks/ -W=.git/hooks/ jsr:@hongminhee/deno-task-hooks",
"hooks:pre-commit": "deno fmt && deno lint && deno check main.ts",
"pull": "deno -RE pull.ts",
"updatefresh": "deno -A -r https://fresh.deno.dev/update . ",
"updateudd": "deno -A https://deno.land/x/udd/main.ts --dry-run deno.jsonc",
"update": "deno task update_fresh && deno task update_udd",
"esm:add": "deno run -A https://esm.sh add",
"esm:update": "deno run -A https://esm.sh update",
"esm:remove": "deno run -A https://esm.sh remove",
"build": "deno -A dev.ts build",
"preview": "deno -A main.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"types": ["./types.d.ts"]
},
"fmt": { "singleQuote": true, "semiColons": false, "lineWidth": 85 },
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"nodeModulesDir": true,
"imports": {
"$fresh/": "https://deno.land/x/[email protected]/",
// "$std/": "https://deno.land/[email protected]/",
"@/": "./",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@std/async": "jsr:@std/async@^1.0.4",
"@std/dotenv": "jsr:@std/dotenv@^0.225.1",
"@tanstack/query-core": "https://esm.sh/*@tanstack/query-core@^4",
"@tanstack/react-query": "https://esm.sh/*@tanstack/react-query@^4",
"@trpc/client": "https://esm.sh/@trpc/[email protected]",
"@trpc/react-query": "https://esm.sh/*@trpc/[email protected]",
"@trpc/server": "https://esm.sh/@trpc/[email protected]",
"@trpc/server/": "https://esm.sh/@trpc/[email protected]/",
"axiod": "https://deno.land/x/[email protected]/mod.ts",
"axios-request-throttle": "https://esm.sh/[email protected]",
"capitalize": "https://esm.sh/[email protected]/capitalize",
"icons/": "https://deno.land/x/[email protected]/tsx/",
"kv_oauth": "https://deno.land/x/[email protected]/mod.ts",
"kvdex": "jsr:@olli/[email protected]",
"preact": "https://esm.sh/[email protected]",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"react": "https://esm.sh/[email protected]/compat",
"react/": "https://esm.sh/[email protected]/compat/",
"startCase": "https://esm.sh/[email protected]/startCase",
"tailwindcss": "npm:[email protected]",
"tailwindcss/": "npm:/[email protected]/",
"tailwindcss/plugin": "npm:/[email protected]/plugin.js",
"use-sync-external-store": "https://esm.sh/*[email protected]",
"use-sync-external-store/": "https://esm.sh/*[email protected]/",
"zod": "https://esm.sh/[email protected]"
},
"exclude": ["**/_fresh/*"],
"unstable": ["kv", "cron", "fmt-html", "fmt-css", "fmt-yaml", "fmt-component"]
}