-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdeno.json
55 lines (55 loc) · 1.71 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
54
55
{
"lock": false,
"nodeModulesDir": "auto",
"lint": {
"rules": {
"tags": ["fresh", "recommended"],
"include": [
"prefer-ascii",
"camelcase",
"eqeqeq",
"no-const-assign",
"no-eval",
"no-non-null-assertion",
"no-throw-literal",
"no-sparse-arrays",
"no-external-import"
]
},
"exclude": ["fresh.gen.ts"]
},
"fmt": {
"useTabs": false,
"singleQuote": true,
"indentWidth": 2
},
"tasks": {
"start": "deno run -A --env --watch=static/,routes/,islands/,components/,utils/,i18n/ dev.ts",
"build": "deno run -A dev.ts build",
"update": "deno run -A -r https://fresh.deno.dev/update .",
"preview": "deno run -A main.ts"
},
"exclude": ["**/_fresh/*"],
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"imports": {
"$fresh/": "https://deno.land/x/fresh@1.6.8/",
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
"@std/http": "jsr:@std/http@^0.224.1",
"aws-sdk-s3": "npm:@aws-sdk/client-s3",
"bson": "https://raw.githubusercontent.com/lucsoft/web_bson/v0.3.0/mod.js",
"icons/": "https://deno.land/x/tabler_icons_tsx@0.0.6/tsx/",
"preact": "https://esm.sh/preact@10.19.6",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.2",
"preact/": "https://esm.sh/preact@10.19.6/",
"sentry": "npm:@sentry/node",
"tailwindcss": "npm:tailwindcss@3.3.5",
"tailwindcss/": "npm:tailwindcss@3.3.5/",
"tailwindcss/plugin": "npm:tailwindcss@3.3.5/plugin.js",
"@google/generative-ai": "npm:@google/generative-ai@latest",
"~/": "./"
}
}