Files
astro-website/site/package.json
2026-02-10 22:37:29 -05:00

42 lines
1.2 KiB
JSON

{
"name": "site",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"fetch-content": "tsx scripts/fetch-content.ts",
"cache:clear": "tsx scripts/cache-clear.ts",
"verify:blog": "npm run build && tsx scripts/verify-blog-build.ts",
"verify:umami": "npm run build && tsx scripts/verify-umami-in-dist.ts",
"lighthouse:run": "tsx scripts/run-lighthouse.ts",
"verify:lighthouse": "tsx scripts/run-lighthouse.ts --assert-100",
"typecheck": "astro check",
"format": "prettier -w .",
"format:check": "prettier -c .",
"test": "vitest run",
"astro": "astro"
},
"dependencies": {
"@astrojs/sitemap": "^3.7.0",
"@fontsource/manrope": "^5.2.8",
"astro": "^5.17.1",
"redis": "^4.7.1",
"rss-parser": "^3.13.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@types/node": "^25.2.2",
"chrome-launcher": "^1.2.1",
"dotenv": "^17.2.4",
"lighthouse": "^13.0.2",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}