-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.json
22 lines (22 loc) · 891 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
{
"imports": {
"@nostr/tools": "jsr:@nostr/tools@^2.10.3",
"hono": "jsr:@hono/hono@^4.5.5",
"drizzle-orm": "npm:[email protected]",
"drizzle-kit": "npm:[email protected]",
"postgres": "npm:[email protected]"
},
"tasks": {
"cache": "deno cache ./src/main.ts ./src/db/schema.ts npm:@libsql/client",
"cache:reload": "deno cache --reload ./src/main.ts ./src/db/schema.ts",
"db:generate": "deno run -A --node-modules-dir npm:drizzle-kit generate",
"db:generate:key": "deno run ./src/db/generateKey.ts",
"dev": "deno run --env --allow-net --allow-env --allow-read --allow-write --watch src/main.ts",
"start": "deno run --allow-net --allow-env --allow-read --allow-write --cert ./ca-certificate.crt src/main.ts",
"test": "deno test --env --allow-env"
},
"compilerOptions": {
"jsx": "precompile",
"jsxImportSource": "hono/jsx"
}
}