-
Notifications
You must be signed in to change notification settings - Fork 157
/
Copy pathdeno.json
53 lines (53 loc) · 2.2 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
{
"lock": false,
"tasks": {
"init:stripe": "deno run --allow-read --allow-env --allow-net tools/init_stripe.ts",
"db:dump": "deno run --allow-read --allow-env --unstable tools/dump_kv.ts",
"db:seed": "deno run --allow-read --allow-env --allow-net --unstable tools/seed_submissions.ts",
"db:reset": "deno run --allow-read --allow-env --unstable tools/reset_kv.ts",
"start": "deno run --unstable -A --watch=static/,routes/ dev.ts",
"test": "KV_PATH=:memory: deno test -A --unstable --parallel --coverage=./cov",
"check:license": "deno run --allow-read --allow-write tools/check_license.ts",
"check:types": "deno check **/*.ts && deno check **/*.tsx",
"ok": "deno fmt --check && deno lint && deno task check:license --check && deno task check:types && deno task test",
"cov": "deno coverage ./cov/ --lcov --exclude='test.ts' > cov.lcov",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run -A --unstable dev.ts build",
"preview": "deno run -A --unstable main.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"imports": {
"@/": "./",
"$fresh/": "https://deno.land/x/fresh@1.4.2/",
"$gfm": "https://deno.land/x/gfm@0.2.4/mod.ts",
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.1",
"@preact/signals": "https://esm.sh/*@preact/signals@1.1.3",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.2.3",
"twind-preset-tailwind/": "https://esm.sh/@twind/preset-tailwind@1.1.4/",
"twind-preset-ext": "https://esm.sh/@twind/preset-ext@1.0.7/",
"std/": "https://deno.land/std@0.188.0/",
"stripe": "./stripe.ts",
"feed": "https://esm.sh/feed@4.2.2",
"kv_oauth": "https://deno.land/x/deno_kv_oauth@v0.6.1/mod.ts",
"tabler_icons_tsx/": "https://deno.land/x/tabler_icons_tsx@0.0.4/tsx/",
"@twind/core": "https://esm.sh/@twind/core@1.1.3",
"fresh_charts/": "https://deno.land/x/fresh_charts@0.3.1/"
},
"exclude": [
"cov/",
"_fresh/"
],
"lint": {
"rules": {
"tags": [
"fresh",
"recommended"
]
}
}
}