romdex/deno.json

51 lines
1.4 KiB
JSON
Raw Normal View History

2024-12-13 11:00:53 -05:00
{
"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/",
"@/": "./",
2024-12-13 11:00:53 -05:00
"@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",
2024-12-13 20:11:58 -05:00
"pg": "npm:pg@^8.13.1",
"pg-hstore": "npm:pg-hstore@^2.3.4",
2024-12-13 11:00:53 -05:00
"preact": "https://esm.sh/preact@10.22.0",
"preact/": "https://esm.sh/preact@10.22.0/",
2024-12-13 17:21:00 -05:00
"sequelize": "npm:sequelize@6.37.5",
2024-12-13 11:00:53 -05:00
"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"
]
}
}