37 lines
976 B
JSON
37 lines
976 B
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",
|
|
"typecheck": "astro check",
|
|
"format": "prettier -w .",
|
|
"format:check": "prettier -c .",
|
|
"test": "vitest run",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/sitemap": "^3.7.0",
|
|
"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",
|
|
"dotenv": "^17.2.4",
|
|
"prettier": "^3.8.1",
|
|
"prettier-plugin-astro": "^0.14.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.9.3",
|
|
"vitest": "^4.0.18"
|
|
}
|
|
}
|