-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
46 lines (46 loc) · 1.9 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
{
"lock": false,
"tasks": {
"check": "deno lint --ignore=argon2/wasm_exec.js && deno check argon2/mod.ts components/**/*.tsx islands/**/*.tsx routes/**/*.ts routes/**/*.tsx workers/**/*.ts *.ts",
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
"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.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",
"tailwindcss": "npm:tailwindcss@3.4.1",
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
"@tailwindcss/forms": "npm:@tailwindcss/forms@0.5.7",
"$std/": "https://deno.land/std@0.211.0/",
"sqlite": "https://deno.land/x/sqlite@v3.8/mod.ts",
"argon2": "./argon2/mod.ts",
"sharp": "npm:sharp@0.33.2",
"clsx": "https://esm.sh/clsx@2.1.0",
"feather-icons": "https://esm.sh/feather-icons@4.29.1",
"ky": "https://esm.sh/ky@1.2.3",
"@db": "./lib/db/db.ts",
"@trpc/server": "npm:@trpc/server@next",
"@trpc/client": "npm:@trpc/client@next",
"@trpc": "./lib/trpc/client.ts",
"zod": "https://deno.land/x/zod@v3.22.4/mod.ts",
"zod-validation-error": "https://esm.sh/zod-validation-error@3.1.0"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact",
"noUnusedLocals": true,
"noUnusedParameters": true,
"verbatimModuleSyntax": true
},
"nodeModulesDir": true
}