-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
37 lines (37 loc) · 1.48 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
{
"lock": false,
"test": { "exclude": ["demo"] },
"exclude": ["demo/fresh.gen.ts", "**/_fresh/*"],
"tasks": {
"start": "deno run -A --watch=static/,routes/ ./demo/dev.ts",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"check": "deno fmt --check && deno lint && deno task check:imports",
"check:imports": "deno run --allow-read tools/check_imports.ts",
"test": "deno test --allow-read --allow-env --allow-net=esm.sh,deno.land --allow-run=deno --doc --location=http://localhost:3000",
"build": "deno run -A demo/dev.ts build",
"preview": "deno run -A demo/main.ts"
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/",
"$std/": "https://deno.land/std@0.195.0/",
"$/": "./demo/",
"🏝️/": "./demo/islands/",
"🗺/": "./demo/routes/",
"⚫/": "./demo/core/",
"🔧/": "./demo/services/",
"$fresh-testing-library": "./mod.ts",
"$fresh-testing-library/": "./",
"$gfm": "jsr:@deno/gfm@0.9.0",
"msw": "npm:msw@2.0.8"
},
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"lint": {
"rules": { "include": ["no-console"], "tags": ["fresh", "recommended"] }
}
}