website/deno.json

17 lines
630 B
JSON
Raw Normal View History

2023-07-23 16:04:28 -04:00
{
"compilerOptions": {
"jsx": "react-jsx",
"jsxImportSource": "react"
},
"tasks": {
2023-09-29 22:26:54 -04:00
"lume": "echo \"import 'lume/cli.ts'\" | deno run --unstable --allow-write='.' --allow-read='.' --allow-net='deno.land,cdn.deno.land,esm.sh,0.0.0.0:8080' --allow-sys=networkInterfaces --allow-env='LUME_ENV,LUME_LIVE_RELOAD' -",
2023-07-23 16:04:28 -04:00
"build": "deno task lume",
2023-08-01 21:54:11 -04:00
"serve": "deno task lume -s",
"deploy": "rsync -avh --progress --delete ./_site/ podman:/srv/www/fosterhangdaan.com/"
2023-07-23 16:04:28 -04:00
},
"imports": {
"react/jsx-runtime": "https://esm.sh/react@18.2.0/jsx-runtime",
2023-11-27 16:58:56 -05:00
"lume/": "https://deno.land/x/lume@v1.19.4/"
2023-07-23 16:04:28 -04:00
}
}