-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
26 lines (24 loc) · 815 Bytes
/
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
{
"tasks": {
"run": "deno run --allow-env --allow-net --allow-read --unstable-cron --watch src/main.ts",
"check": "deno check src/main.ts"
},
"imports": {
"@app": "./src/app/mod.ts",
"@cron": "./src/cron/mod.ts",
"@domain": "./src/domain/mod.ts",
"@infra": "./src/infra/mod.ts",
"@utils": "./src/utils/mod.ts",
"assert": "jsr:@std/assert@^1.0.9",
"datetime": "jsr:@std/datetime@^0.225.2",
"dotenv": "jsr:@std/dotenv@^0.225.3",
"uuid": "jsr:@std/uuid@^1.0.4",
"hono": "jsr:@hono/hono@^4.6.14",
"smtp": "jsr:@sholvoir/deno-smtp@^0.9.9",
"zod": "https://deno.land/x/[email protected]/mod.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "hono/jsx"
}
}