Switch the site to Astro

This commit is contained in:
Andras Schmelczer 2026-05-25 13:10:58 +01:00
parent a5f64a3ff8
commit 2e02e52661
14 changed files with 8633 additions and 17018 deletions

View file

@ -1,60 +1,56 @@
{
"name": "portfolio",
"description": "An easily configurable timeline of projects.",
"name": "schmelczer-dev",
"description": "A static personal blog for Andras Schmelczer.",
"private": true,
"type": "module",
"packageManager": "npm@10.9.2",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"start": "webpack serve --open --mode development",
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.(ts|scss|json|html)\"",
"build": "webpack --mode production",
"update": "ncu"
"dev": "astro dev",
"start": "astro dev",
"typecheck": "astro check",
"lint": "prettier --check \"astro.config.mjs\" \"src/**/*.{astro,ts,md,css}\" \"scripts/*.mjs\" \"*.md\" \"*.json\"",
"format": "prettier --write \"astro.config.mjs\" \"src/**/*.{astro,ts,md,css}\" \"scripts/*.mjs\" \"*.md\" \"*.json\"",
"build": "astro build",
"preview": "astro preview",
"qa:links": "node scripts/check-links.mjs",
"qa:no-js": "node scripts/check-no-js.mjs",
"qa:overflow": "node scripts/install-playwright-deps.mjs && node scripts/check-overflow.mjs",
"qa": "npm run typecheck && npm run lint && npm run build && npm run qa:links && npm run qa:no-js && npm run qa:overflow"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schmelczer/schmelczer.github.io.git"
},
"keywords": [
"CV",
"curriculum",
"vitae",
"portfolio",
"resumé"
"blog",
"software engineering",
"computer science",
"portfolio"
],
"author": "Andras Schmelczer",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/schmelczer/schmelczer.github.io/issues"
},
"browserslist": [
"defaults"
],
"homepage": "https://github.com/schmelczer/schmelczer.github.io#readme",
"devDependencies": {
"@plausible-analytics/tracker": "^0.4.0",
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"css-loader": "^6.8.1",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"html-webpack-plugin": "^5.5.3",
"inline-source-webpack-plugin": "^3.0.1",
"mini-css-extract-plugin": "^2.7.6",
"npm-check-updates": "^16.14.4",
"prettier": "^3.0.3",
"resolve-url-loader": "^5.0.0",
"responsive-loader": "^3.1.2",
"sass": "^1.68.0",
"sass-loader": "^13.3.2",
"sharp": "^0.32.6",
"sitemap-webpack-plugin": "^1.1.1",
"string-replace-loader": "^3.1.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
"@astrojs/check": "^0.9.9",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"astro": "^6.3.1",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"typescript": "^5.9.3",
"unist-util-visit": "^5.1.0",
"sharp": "^0.34.5"
},
"overrides": {
"yaml": "^2.9.0"
}
}