Files
gerbeur/deno.json
khannurien 7afb5d3f07
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 42s
v3: added comment likes, added votes/likes list view, added db migrations mechanism, updated project dependencies
2026-06-21 14:17:56 +00:00

36 lines
1.1 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 scripts/lingui-extract.ts",
"i18n:compile": "deno run -A scripts/lingui-compile.ts",
"start": "deno run -A api/sql/init.ts && deno run -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"]
}