Skip to content

Commit

Permalink
updated all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
uebelack committed Aug 19, 2023
1 parent c3007e2 commit 0b47743
Show file tree
Hide file tree
Showing 4 changed files with 931 additions and 973 deletions.
6 changes: 3 additions & 3 deletions bin/update-sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ const sitemap = `
</urlset>
`;

const formattedSitemap = prettier.format(sitemap, { parser: 'html' });

fs.writeFileSync(path.resolve(path.join(__dirname, '../public/sitemap.xml')), formattedSitemap, 'utf8');
prettier.format(sitemap, { parser: 'html' }).then((formattedSitemap:string) => {
fs.writeFileSync(path.resolve(path.join(__dirname, '../public/sitemap.xml')), formattedSitemap, 'utf8');
});
50 changes: 28 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,33 +12,34 @@
"sitemap:update": "ts-node -O '{\"module\": \"commonjs\"}' bin/update-sitemap.ts"
},
"dependencies": {
"@fontsource/fira-code": "^4.5.13",
"@fontsource/fira-code": "^5.0.8",
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.3.0",
"@types/node": "18.15.11",
"@types/react": "18.0.33",
"@next/mdx": "^13.4.19",
"@types/node": "20.5.1",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"axios": "^1.3.5",
"axios": "^1.4.0",
"flat": "^5.0.2",
"form-data": "^4.0.0",
"formik": "^2.2.9",
"mailgun.js": "^8.2.1",
"next": "13.3.0",
"formik": "^2.4.3",
"mailgun.js": "^9.2.1",
"next": "13.4.19",
"react": "18.2.0",
"react-cookie-consent": "^8.0.1",
"react-dom": "18.2.0",
"react-google-recaptcha-v3": "^1.10.1",
"react-icons": "^4.8.0",
"react-intl": "^6.3.2",
"react-icons": "^4.10.1",
"react-intl": "^6.4.4",
"react-lazyload": "^3.2.0",
"react-remark": "^2.1.0",
"react-scroll": "^1.8.9",
"react-typist-component": "^1.0.5",
"typescript": "5.0.4",
"yup": "^1.0.2"
"typescript": "5.1.6",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
Expand All @@ -48,25 +49,30 @@
"@types/isomorphic-fetch": "^0.0.36",
"@types/jest": "^29.5.3",
"@types/jsdom": "^21.1.1",
"@types/prettier": "^2.7.2",
"@types/prettier": "^3.0.0",
"@types/react-lazyload": "^3.2.0",
"@types/react-scroll": "^1.8.6",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"autoprefixer": "^10.4.14",
"concurrently": "^8.0.1",
"eslint": "8.38.0",
"@types/react-scroll": "^1.8.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"autoprefixer": "^10.4.15",
"concurrently": "^8.2.0",
"eslint": "8.47.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "13.3.0",
"eslint-config-next": "13.4.19",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"isomorphic-fetch": "^3.0.0",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"jsdom": "^21.1.1",
"jsdom": "^22.1.0",
"postcss": "^8.4.28",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"tailwindcss": "^3.3.1",
"prettier": "^3.0.2",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
Expand Down
6 changes: 3 additions & 3 deletions public/sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
>
<url>
<loc>https://uebelacker.ch/</loc>
<lastmod>2023-05-07T16:29:50.240Z</lastmod>
<lastmod>2023-08-19T10:39:29.220Z</lastmod>
<xhtml:link rel="alternate" hreflang="de" href="https://uebelacker.ch/de" />
</url>

<url>
<loc>https://uebelacker.ch/imprint</loc>
<lastmod>2023-05-07T16:29:50.240Z</lastmod>
<lastmod>2023-08-19T10:39:29.220Z</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
Expand All @@ -23,7 +23,7 @@

<url>
<loc>https://uebelacker.ch/privacy</loc>
<lastmod>2023-05-07T16:29:50.240Z</lastmod>
<lastmod>2023-08-19T10:39:29.220Z</lastmod>
<xhtml:link
rel="alternate"
hreflang="de"
Expand Down
Loading

0 comments on commit 0b47743

Please sign in to comment.