donation-site/deno.json

25 lines
787 B
JSON
Raw Normal View History

2024-05-31 13:12:53 -04:00
{
"imports": {
"lume/": "https://deno.land/x/lume@v2.2.0/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run --allow-write='.' --allow-read='.' --allow-net='deno.land,cdn.deno.land,esm.sh,0.0.0.0:3000' --allow-sys=networkInterfaces --allow-env='LUME_ENV,LUME_LIVE_RELOAD,LUME_LOGS,LUME_NOCACHE,LUME_DRAFTS' -",
"build": "deno task lume",
"serve": "deno task lume -s",
2024-05-31 13:17:21 -04:00
"check": "deno fmt --check && deno lint && deno check **/*.ts && deno check **/*.tsx",
"deploy": "rsync -avh --progress --delete ./_site/ podman:/srv/www/pay.fosterhangdaan.com/"
2024-05-31 13:12:53 -04:00
},
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "npm:preact",
"types": [
"lume/types.ts"
]
},
"fmt": {
"exclude": [
"LICENSE.md"
]
}
}