-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
54 lines (54 loc) · 2.73 KB
/
deno.jsonc
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
54
{
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Tasks
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
"tasks": {
/* Standard boilerplate tasks */
"start": "deno run --unstable -A --watch=static/,routes/ dev.ts",
"build": "deno run -A dev.ts build",
"preview": "deno run -A main.ts",
/* Updating tasks */
"update": "deno run -A -r https://fresh.deno.dev/update .",
"update:imports": "deno run -A -r https://deno.land/x/update/mod.ts ./deno.jsonc"
},
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Imports
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
"imports": {
"@/": "./",
"$fresh/": "https://deno.land/x/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"twind": "https://esm.sh/[email protected]", // To remove
"twind/": "https://esm.sh/[email protected]/", // To remove
"twind-preset-ext": "https://esm.sh/@twind/[email protected]/", // To remove
"@twind/core": "https://esm.sh/@twind/[email protected]", // To remove
"@twind/preset-tailwind": "https://esm.sh/@twind/[email protected]/", // To remove
"@twind/preset-autoprefix": "https://esm.sh/@twind/[email protected]/", // To remove
"std/": "https://deno.land/[email protected]/",
/* Data management */
"zod": "https://deno.land/x/[email protected]/mod.ts",
/* UI Components */
"lunchbox": "https://deno.land/x/[email protected]/mod.ts",
"lunchbox/": "https://deno.land/x/[email protected]/src/",
"icons/": "https://deno.land/x/[email protected]/tsx/",
/* CSS-in-JS */
"resin": "https://deno.land/x/[email protected]/mod.ts",
/* Database and authentication */
"kv_oauth/": "https://deno.land/x/[email protected]/",
"ulid": "https://deno.land/[email protected]/ulid/mod.ts",
/* Other imports */
"ptera": "https://deno.land/x/[email protected]/mod.ts"
},
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
Other things
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
"lock": false,
"exclude": ["**/_fresh/*"],
"lint": { "rules": { "tags": ["fresh", "recommended"] } },
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
"fmt": { "exclude": ["*.md", "**/*.md"], "singleQuote": true }
}