website/deno.json

28 lines
1.1 KiB
JSON
Raw Normal View History

2023-07-23 16:04:28 -04:00
{
"compilerOptions": {
"jsx": "react-jsx",
2023-12-09 10:45:00 -05:00
"jsxImportSource": "npm:react",
2024-09-06 11:05:02 -04:00
"jsxImportSourceTypes": "npm:@types/react",
2023-12-09 10:45:00 -05:00
"types": [
"lume/types.ts"
]
2023-07-23 16:04:28 -04:00
},
"tasks": {
2024-09-07 07:38:55 -04:00
"build": "deno run --allow-write='.' --allow-read='.' --allow-net='deno.land,cdn.deno.land,esm.sh,0.0.0.0:3000,jsr.io,lumeland.github.io' --allow-sys=networkInterfaces --allow-env='LUME_ENV,LUME_LIVE_RELOAD,LUME_LOGS,LUME_NOCACHE,LUME_DRAFTS,NODE_ENV,SASS_PATH' lume.ts",
2024-09-06 11:05:02 -04:00
"check": "deno fmt --check && deno lint && deno check .",
2024-09-07 07:38:55 -04:00
"serve": "deno run --allow-write='.' --allow-read='.' --allow-net='deno.land,cdn.deno.land,esm.sh,0.0.0.0:3000,jsr.io,lumeland.github.io' --allow-sys=networkInterfaces --allow-env='LUME_ENV,LUME_LIVE_RELOAD,LUME_LOGS,LUME_NOCACHE,LUME_DRAFTS,NODE_ENV,SASS_PATH' lume.ts -s",
2023-08-01 21:54:11 -04:00
"deploy": "rsync -avh --progress --delete ./_site/ podman:/srv/www/fosterhangdaan.com/"
2023-07-23 16:04:28 -04:00
},
"imports": {
2024-09-10 06:34:49 -04:00
"lume/": "https://deno.land/x/lume@v2.3.1/",
2024-09-06 11:05:02 -04:00
"lume-markdown-plugins/": "https://deno.land/x/lume_markdown_plugins@v0.7.1/"
},
"fmt": {
"proseWrap": "preserve",
"exclude": [
2024-03-18 08:22:09 -04:00
"LICENSE.md",
"_site/"
]
2023-07-23 16:04:28 -04:00
}
}