-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
49 lines (49 loc) · 1.38 KB
/
Copy pathdeno.json
File metadata and controls
49 lines (49 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
{
"unstable": [
"raw-imports",
"cron"
],
"lint": {
"exclude": ["public"]
},
"fmt": {
"lineWidth": 120,
"useBraces": "preferNone",
"singleBodyPosition": "maintain",
"exclude": [".impeccable"]
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "jsr:@hono/hono/jsx",
"lib": ["deno.ns", "deno.window", "deno.unstable", "dom", "dom.iterable", "esnext"]
},
"imports": {
"@electric-sql/pglite": "npm:@electric-sql/pglite@0.3.15",
"@mozilla/readability": "npm:@mozilla/readability@^0.6.0",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@surprisetalk/pgtemp": "jsr:@surprisetalk/pgtemp@^0.2.3",
"linkedom": "npm:linkedom@^0.18.12",
"sharp": "npm:sharp@^0.34.5",
"@hono/hono": "jsr:@hono/hono@4.12.15",
"postgres": "npm:postgres@^3.4.5",
"stripe": "npm:stripe@^22.1.0",
"resend": "npm:resend@^6.12.2"
},
"tasks": {
"deploy": "deno run -A jsr:@deno/deployctl deploy --prod --project=dong server.tsx",
"ding": "deno run -A ding.ts",
"bot": "deno run -A bot.ts",
"node": "deno serve -A node.tsx",
"checkmark": "deno run -A bots/checkmark.ts",
"backfill": "deno run -A backfill.ts",
"test": "deno test -A"
},
"deploy": {
"project": "95835fd2-7685-4cb3-851e-ea50c53f0128",
"exclude": [
"**/node_modules"
],
"include": [],
"entrypoint": "server.tsx"
}
}