This commit is contained in:
Morten Olsen
2024-03-30 20:53:01 +01:00
commit 98e39a54cc
94 changed files with 11654 additions and 0 deletions

57
package.json Normal file
View File

@@ -0,0 +1,57 @@
{
"name": "morten-olsen-github-io",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"lint:apply": "eslint ./src --fix && prettier --write ./src",
"build": "astro check && astro build",
"preview": "astro preview",
"serve": "SITE_URL=http://localhost:3000 pnpm build && serve dist",
"astro": "astro",
"prepare": "husky"
},
"lint-staged": {
"*": "pnpm lint:apply"
},
"dependencies": {
"astro": "^4.5.6",
"date-fns": "^3.6.0",
"typescript": "^5.4.2"
},
"devDependencies": {
"@astrojs/check": "^0.5.9",
"@astrojs/mdx": "^2.2.1",
"@astrojs/rss": "^4.0.5",
"@astrojs/sitemap": "^3.1.2",
"@eslint/js": "^8.57.0",
"@iconify-json/mdi": "^1.1.64",
"@types/jsonld": "^1.5.13",
"@types/node": "^20.12.2",
"@typescript-eslint/parser": "^7.5.0",
"astro-capo": "^0.0.1",
"astro-compress": "^2.2.16",
"astro-icon": "^1.1.0",
"astro-robots-txt": "^1.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-astro": "^0.33.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.0.0",
"husky": "^9.0.11",
"json-schema-to-typescript": "^13.1.2",
"less": "^4.2.0",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"prettier-plugin-astro": "^0.13.0",
"sass": "^1.72.0",
"serve": "^14.2.1",
"sharp": "^0.33.2",
"sharp-ico": "^0.1.5",
"tsx": "^4.7.1",
"vite-plugin-pwa": "^0.19.7"
}
}