-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
38 lines (38 loc) · 1.39 KB
/
deno.json
File metadata and controls
38 lines (38 loc) · 1.39 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
{
"lock": false,
"tasks": {
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"cli": "deno repl --allow-all --eval-file=cli.ts",
"manifest": "deno task cli manifest $(pwd)",
"start": "deno run --allow-all --watch=static/,routes/,utils/ dev.ts",
"build": "deno run --allow-all dev.ts build",
"preview": "deno run --allow-all main.ts",
"update": "deno run --allow-all --reload https://fresh.deno.dev/update .",
"deploy": "./deploy/deploy.sh"
},
"unstable": ["kv", "cron"],
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"exclude": ["**/_fresh/*"],
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
"@popperjs/core": "npm:@popperjs/core@^2.11.8",
"@types/d3": "npm:@types/d3@^7.4.3",
"preact": "https://esm.sh/preact@10.22.0",
"preact/": "https://esm.sh/preact@10.22.0/",
"@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",
"$std/": "https://deno.land/std@0.216.0/",
"tippy.js": "npm:tippy.js@^6.3.7"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"nodeModulesDir": "auto",
"files": [
"./global.d.ts"
]
}