-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
28 lines (28 loc) · 1.28 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
{
"tasks": {
"start": "npx dotenv -- deno run -A --unstable --node-modules-dir --watch=routes/ dev.ts",
"production": "deno run -A main.ts",
"screenshot": "deno run -A utils/screenshot.ts",
"update-deno-lock": "deno cache --lock=deno.lock --lock-write dev.ts",
"db-pull": "npx dotenv -e .env.migration -- deno run -A --unstable npm:prisma db pull",
"generate-client": "deno run -A --unstable npm:prisma generate --data-proxy",
"migrate-deploy": "npx dotenv -e .env.migration -- deno run -A --unstable npm:prisma migrate deploy",
"db-url": "npx dotenv -p DATABASE_URL",
"deploy-staging": "deployctl deploy --project=graveyardjs-staging ./main.ts"
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"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]",
"twind": "https://esm.sh/[email protected]",
"twind/": "https://esm.sh/[email protected]/",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@prisma/client/edge": "./generated/client/deno/edge.js"
}
}