49 lines
1.4 KiB
JSON
49 lines
1.4 KiB
JSON
{
|
|
"lock": false,
|
|
"tasks": {
|
|
"check": "deno fmt --check && deno lint && deno check .",
|
|
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -",
|
|
"manifest": "deno task cli manifest $(pwd)",
|
|
"start": "deno run --watch=static/,routes/ dev.ts",
|
|
"build": "deno run dev.ts build",
|
|
"preview": "deno run main.ts",
|
|
"update": "deno run -r https://fresh.deno.dev/update ."
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"tags": [
|
|
"fresh",
|
|
"recommended"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"**/_fresh/*"
|
|
],
|
|
"imports": {
|
|
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
|
|
"@preact/signals": "https://esm.sh/*@preact/signals@1.2.2",
|
|
"@preact/signals-core": "https://esm.sh/*@preact/signals-core@1.5.1",
|
|
"@std/dotenv": "jsr:@std/dotenv@0.216.0",
|
|
"@valibot/valibot": "jsr:@valibot/valibot@0.42.1",
|
|
"pg": "npm:pg@^8.13.1",
|
|
"pg-hstore": "npm:pg-hstore@^2.3.4",
|
|
"preact": "https://esm.sh/preact@10.22.0",
|
|
"preact/": "https://esm.sh/preact@10.22.0/",
|
|
"sequelize": "npm:sequelize@6.37.5",
|
|
"tailwindcss": "npm:tailwindcss@3.4.1",
|
|
"tailwindcss/": "npm:/tailwindcss@3.4.1/",
|
|
"tailwindcss/plugin": "npm:/tailwindcss@3.4.1/plugin.js",
|
|
"xml2js": "npm:xml2js@0.6.2"
|
|
},
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
},
|
|
"nodeModulesDir": "auto",
|
|
"fmt": {
|
|
"exclude": [
|
|
"LICENSE.md"
|
|
]
|
|
}
|
|
}
|