-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
53 lines (53 loc) · 2.15 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,
"unstable": ["kv"],
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"db:migrate": "deno run --allow-read --allow-env --allow-net --allow-run tasks/db-migrate.ts",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
"update": "deno run -A -r https://fresh.deno.dev/update ."
},
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"@/": "./",
"@deno/kv-oauth": "jsr:@deno/kv-oauth@^0.11.0",
"@jmondi/browser-storage": "jsr:@jmondi/browser-storage@^1.9.0",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/dotenv": "jsr:@std/dotenv@^0.225.3",
"@std/http": "jsr:@std/http@^1.0.12",
"@std/log": "jsr:@std/log@^0.224.1",
"@std/testing": "jsr:@std/testing@^1.0.9",
"@std/ulid": "jsr:@std/ulid@^1.0.0",
"bcrypt": "https://deno.land/x/bcrypt@v0.4.1/mod.ts",
"daisyui": "npm:daisyui@4.11.1",
"preact": "https://esm.sh/preact@10.19.6",
"preact/": "https://esm.sh/preact@10.19.6/",
"tailwindcss": "npm:tailwindcss@3.4.3",
"tailwindcss/": "npm:/tailwindcss@3.4.3/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.3/plugin.js",
"usid": "https://deno.land/x/usid@2.0.0/mod.ts",
"zod": "https://deno.land/x/zod@v3.23.8/mod.ts",
"zod-validation-error": "npm:zod-validation-error@^3.3.0"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noUnusedLocals": true,
"noUnusedParameters": true
},
"deploy": {
"project": "a5faed4e-ddaf-4198-9b02-e379b4f89a5b",
"exclude": ["**/node_modules"],
"include": [],
"entrypoint": "main.ts"
}
}