-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathdeno.json
More file actions
46 lines (46 loc) · 2.19 KB
/
deno.json
File metadata and controls
46 lines (46 loc) · 2.19 KB
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
{
"lock": false,
"tasks": {
"init:stripe": "deno run --allow-read --allow-env --allow-net --env tasks/init_stripe.ts",
"db:dump": "deno run --allow-read --allow-env tasks/db_dump.ts",
"db:restore": "deno run --allow-read --allow-env tasks/db_restore.ts",
"db:seed": "deno run --allow-read --allow-env --allow-net tasks/db_seed.ts",
"db:migrate": "deno run --allow-read --allow-env --allow-net tasks/db_migrate.ts",
"db:reset": "deno run --allow-read --allow-env tasks/db_reset.ts",
"start": "deno run -A --watch=static/,routes/ --env dev.ts",
"test": "DENO_KV_PATH=:memory: deno test -A --parallel --coverage",
"check:license": "deno run --allow-read --allow-write tasks/check_license.ts",
"check:types": "deno check main.ts && deno check dev.ts && deno check tasks/*.ts",
"ok": "deno fmt --check && deno lint && deno task check:license --check && deno task check:types && deno task test",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"imports": {
"@/": "./",
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"@preact-icons/tb": "jsr:@preact-icons/tb@^1.0.14",
"preact": "npm:preact@10.22.1",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/datetime": "jsr:@std/datetime@^0.225.5",
"@std/front-matter": "jsr:@std/front-matter@^1.0.9",
"@std/fs": "jsr:@std/fs@^1.0.18",
"@std/http": "jsr:@std/http@^1.0.18",
"@std/path": "jsr:@std/path@^1.1.0",
"@std/testing": "jsr:@std/testing@^1.0.14",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"preact-render-to-string": "npm:preact-render-to-string@6.2.2",
"@preact/signals": "npm:@preact/signals@1.2.2",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"stripe": "npm:/stripe@13.5.0",
"kv_oauth/": "https://deno.land/x/deno_kv_oauth@v0.9.1/",
"fresh_charts/": "https://deno.land/x/fresh_charts@0.3.1/"
},
"lint": { "rules": { "tags": ["fresh", "recommended", "jsx", "react"] } },
"unstable": [
"kv"
]
}