Files
gerbeur/deno.json
khannurien 76de798faf
Some checks failed
Build and Publish Docker Image / build-and-push (push) Failing after 20s
v3: fixed authorization bug with stale tokens, fixed private dump access bug, various small fixes across the app
2026-06-27 10:40:07 +00:00

36 lines
1.2 KiB
JSON

{
"tasks": {
"dev": "deno run --env-file -A npm:vite & deno task server:start",
"build": "deno task i18n:extract && deno task i18n:compile && deno run --env-file -A npm:vite build",
"server:start": "deno run --env-file -A --watch api/main.ts",
"serve": "deno task build && deno task server:start",
"i18n:extract": "deno run -A npm:@lingui/cli extract --clean --overwrite --workers 1",
"i18n:compile": "deno run -A npm:@lingui/cli compile --workers 1",
"start": "deno run --env-file -A api/db/init.ts && deno run --env-file -A api/main.ts"
},
"nodeModulesDir": "auto",
"compilerOptions": {
"types": [
"react",
"react-dom",
"@types/react"
],
"lib": [
"dom",
"dom.iterable",
"deno.ns"
],
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"imports": {
"@db/sqlite": "jsr:@db/sqlite@^0.13.0",
"@oak/oak": "jsr:@oak/oak@^17.2.0",
"@panva/jose": "jsr:@panva/jose@^6.2.3",
"@tajpouria/cors": "jsr:@tajpouria/cors@^1.2.1",
"nodemailer": "npm:nodemailer@^9.0.1",
"marked": "npm:marked@^18.0.5"
},
"allowScripts": ["npm:@swc/core@1.15.41", "npm:esbuild@0.25.12"]
}