eno/deno.json

16 lines
498 B
JSON
Raw Normal View History

2022-12-01 17:10:59 -05:00
{
"compilerOptions": {"lib": [
"deno.window", "DOM"
]},
2023-03-31 06:55:54 -04:00
"imports": {
2023-04-01 15:34:50 -04:00
"react-original": "https://esm.sh/react@18.2.0",
"react": "https://esm.sh/react@18.2.0",
"@eno/app": "./dummy-app.tsx"
2023-03-31 06:55:54 -04:00
},
2022-12-01 17:10:59 -05:00
"tasks":
{
"install": "deno install -f -A --unstable --no-lock -n eno server.tsx",
2023-03-31 06:55:54 -04:00
"run": "deno run -A --unstable --no-lock server.tsx",
"host": "deno run -A --unstable https://deno.land/std@0.181.0/http/file_server.ts"
2022-12-01 17:10:59 -05:00
}
}