This takes part of the work being done in #96 that was reverted but still useful. Note Tailwind and Fresh weren't upgraded because there's no security vulnerability in either, and I have found the new versions to be worse in performance. Thos will likely stay at those fixed versions going forward.
66 lines
2.3 KiB
JSON
66 lines
2.3 KiB
JSON
{
|
|
"lock": false,
|
|
"tasks": {
|
|
"check": "deno fmt --check && deno lint && deno check .",
|
|
"cli": "echo \"import '\\$fresh/src/dev/cli.ts'\" | deno run --unstable -A -",
|
|
"manifest": "deno task cli manifest $(pwd)",
|
|
"start": "deno run -A --watch=static/,routes/,lib/,components/,islands/ dev.ts",
|
|
"build": "deno run -A dev.ts build",
|
|
"preview": "deno run -A main.ts",
|
|
"test": "deno test -A --check"
|
|
},
|
|
"fmt": {
|
|
"useTabs": false,
|
|
"lineWidth": 120,
|
|
"indentWidth": 2,
|
|
"singleQuote": true,
|
|
"proseWrap": "preserve",
|
|
"exclude": ["README.md", "lib/models/dav.js"]
|
|
},
|
|
"lint": {
|
|
"rules": {
|
|
"tags": ["fresh", "recommended"],
|
|
"exclude": ["no-explicit-any", "no-empty-interface", "no-window", "no-unused-vars"]
|
|
},
|
|
"exclude": ["lib/models/dav.js"]
|
|
},
|
|
"exclude": ["./_fresh/*", "./node_modules/*", "**/_fresh/*"],
|
|
"compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" },
|
|
"nodeModulesDir": "auto",
|
|
"imports": {
|
|
"/": "./",
|
|
"./": "./",
|
|
|
|
"fresh/": "https://deno.land/x/fresh@1.7.3/",
|
|
"$fresh/": "https://deno.land/x/fresh@1.7.3/",
|
|
|
|
"postgres": "jsr:@db/postgres@0.19.5",
|
|
"@b-fuze/deno-dom": "jsr:@b-fuze/deno-dom@0.1.56",
|
|
"@fresh/plugin-vite": "jsr:@fresh/plugin-vite@1.0.4",
|
|
"@hexagon/croner": "jsr:@hexagon/croner@9.1.0",
|
|
"@mikaelporttila/rss": "jsr:@mikaelporttila/rss@1.1.3",
|
|
"@libs/qrcode": "jsr:@libs/qrcode@3.0.0",
|
|
"@libs/xml": "jsr:@libs/xml@7.0.2",
|
|
"@simplewebauthn/server": "jsr:@simplewebauthn/server@13.2.1",
|
|
"@simplewebauthn/browser": "jsr:@simplewebauthn/browser@13.2.0",
|
|
"@std/assert": "jsr:@std/assert@1.0.14",
|
|
"@std/dotenv": "jsr:@std/dotenv@0.225.5",
|
|
"@std/encoding": "jsr:@std/encoding@1.0.10",
|
|
"@std/http": "jsr:@std/http@1.0.20",
|
|
"@std/path": "jsr:@std/path@1.1.2",
|
|
|
|
"chart.js": "npm:chart.js@4.5.0",
|
|
"mrmime": "npm:mrmime@2.0.1",
|
|
"nodemailer": "npm:nodemailer@7.0.6",
|
|
"openid-client": "npm:openid-client@6.8.0",
|
|
"otpauth": "npm:otpauth@9.4.1",
|
|
"preact": "npm:preact@10.27.2",
|
|
"sharp": "npm:sharp@0.34.4",
|
|
"tailwindcss": "npm:tailwindcss@3.4.17",
|
|
"tailwindcss/": "npm:/tailwindcss@3.4.17/",
|
|
"tailwindcss/plugin": "npm:/tailwindcss@3.4.17/plugin.js",
|
|
"vite": "npm:vite@7.1.7",
|
|
"@preact/signals": "npm:@preact/signals@2.3.1"
|
|
}
|
|
}
|