mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 09:13:19 +01:00
package updates
This commit is contained in:
parent
d27efb944f
commit
0759fd04bb
6618
package-lock.json
generated
6618
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
52
package.json
52
package.json
@ -23,25 +23,25 @@
|
||||
"@giphy/js-fetch-api": "^4.1.2",
|
||||
"@kremalicious/react-feather": "^2.1.0",
|
||||
"@yaireo/relative-time": "^1.0.2",
|
||||
"axios": "^0.26.1",
|
||||
"axios": "^0.27.2",
|
||||
"file-saver": "^2.0.5",
|
||||
"framer-motion": "^6.3.0",
|
||||
"gatsby": "^4.12.1",
|
||||
"gatsby-plugin-image": "^2.12.1",
|
||||
"gatsby-plugin-manifest": "^4.12.1",
|
||||
"framer-motion": "^6.3.3",
|
||||
"gatsby": "^4.13.1",
|
||||
"gatsby-plugin-image": "^2.13.0",
|
||||
"gatsby-plugin-manifest": "^4.13.0",
|
||||
"gatsby-plugin-matomo": "^0.13.0",
|
||||
"gatsby-plugin-offline": "^5.12.1",
|
||||
"gatsby-plugin-react-helmet": "^5.12.1",
|
||||
"gatsby-plugin-sharp": "^4.12.1",
|
||||
"gatsby-plugin-sitemap": "^5.12.1",
|
||||
"gatsby-plugin-offline": "^5.13.0",
|
||||
"gatsby-plugin-react-helmet": "^5.13.0",
|
||||
"gatsby-plugin-sharp": "^4.13.0",
|
||||
"gatsby-plugin-sitemap": "^5.13.0",
|
||||
"gatsby-plugin-svgr": "^3.0.0-beta.0",
|
||||
"gatsby-source-filesystem": "^4.12.1",
|
||||
"gatsby-transformer-json": "^4.12.1",
|
||||
"gatsby-transformer-sharp": "^4.12.1",
|
||||
"gatsby-transformer-yaml": "^4.12.1",
|
||||
"gatsby-source-filesystem": "^4.13.0",
|
||||
"gatsby-transformer-json": "^4.13.0",
|
||||
"gatsby-transformer-sharp": "^4.13.0",
|
||||
"gatsby-transformer-yaml": "^4.13.0",
|
||||
"intersection-observer": "^0.12.0",
|
||||
"react": "^18.0.0",
|
||||
"react-dom": "^18.0.0",
|
||||
"react": "^18.1.0",
|
||||
"react-dom": "^18.1.0",
|
||||
"react-helmet": "^6.1.0",
|
||||
"remark": "13.0.0",
|
||||
"remark-breaks": "2.0.2",
|
||||
@ -51,31 +51,31 @@
|
||||
"vcf": "^2.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/node": "^7.16.8",
|
||||
"@babel/preset-env": "^7.16.11",
|
||||
"@loadable/component": "^5.15.2",
|
||||
"@babel/node": "^7.17.10",
|
||||
"@babel/preset-env": "^7.17.10",
|
||||
"@svgr/webpack": "^6.2.1",
|
||||
"@testing-library/jest-dom": "^5.16.4",
|
||||
"@testing-library/react": "^13.1.1",
|
||||
"@testing-library/react": "^13.2.0",
|
||||
"@welldone-software/why-did-you-render": "^7.0.1",
|
||||
"babel-preset-gatsby": "^2.12.1",
|
||||
"babel-preset-gatsby": "^2.13.0",
|
||||
"chalk": "4.1.2",
|
||||
"eslint": "^8.13.0",
|
||||
"eslint": "^8.15.0",
|
||||
"eslint-config-prettier": "^8.5.0",
|
||||
"eslint-plugin-graphql": "^4.0.0",
|
||||
"eslint-plugin-prettier": "^4.0.0",
|
||||
"eslint-plugin-react": "^7.29.4",
|
||||
"eslint-plugin-react-hooks": "^4.4.0",
|
||||
"eslint-plugin-testing-library": "^5.3.1",
|
||||
"eslint-plugin-react-hooks": "^4.5.0",
|
||||
"eslint-plugin-testing-library": "^5.4.0",
|
||||
"identity-obj-proxy": "^3.0.0",
|
||||
"jest": "^27.5.1",
|
||||
"jest-canvas-mock": "^2.3.1",
|
||||
"jest": "^28.1.0",
|
||||
"jest-canvas-mock": "^2.4.0",
|
||||
"jest-environment-jsdom": "^28.1.0",
|
||||
"js-yaml": "^4.1.0",
|
||||
"ora": "^6.1.0",
|
||||
"prepend": "^1.0.2",
|
||||
"prettier": "^2.6.2",
|
||||
"slugify": "^1.6.5",
|
||||
"stylelint": "^14.7.1",
|
||||
"stylelint": "^14.8.2",
|
||||
"stylelint-config-prettier": "^9.0.3",
|
||||
"stylelint-prettier": "^2.0.0"
|
||||
},
|
||||
|
@ -1,13 +1,11 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import loadable from '@loadable/component'
|
||||
import LogoUnit from '../molecules/LogoUnit'
|
||||
import Networks from '../molecules/Networks'
|
||||
import Location from '../molecules/Location'
|
||||
import { footer, actions, copyright } from './Footer.module.css'
|
||||
import { useMeta } from '../../hooks/use-meta'
|
||||
|
||||
const LazyVcard = loadable(() => import('../atoms/Vcard'))
|
||||
import Vcard from '../atoms/Vcard'
|
||||
|
||||
const FooterMarkup = ({ meta, year }) => (
|
||||
<footer className={`h-card ${footer}`}>
|
||||
@ -16,7 +14,7 @@ const FooterMarkup = ({ meta, year }) => (
|
||||
<Location />
|
||||
|
||||
<p className={actions}>
|
||||
<LazyVcard />
|
||||
<Vcard />
|
||||
<a className="u-key" href={meta.gpg}>
|
||||
PGP/GPG key
|
||||
</a>
|
||||
|
@ -8,8 +8,7 @@ module.exports = {
|
||||
'.+\\.(jpg|jpeg|png|gif|eot|otf|webp|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$':
|
||||
'<rootDir>/tests/__mocks__/file-mock.js',
|
||||
'\\.svg': '<rootDir>/tests/__mocks__/svgr-mock.js',
|
||||
'^@reach/router(.*)': '<rootDir>/node_modules/@gatsbyjs/reach-router$1',
|
||||
'^gatsby-page-utils/(.*)$': `gatsby-page-utils/dist/$1` // Workaround for https://github.com/facebook/jest/issues/9771
|
||||
'^@reach/router(.*)': '<rootDir>/node_modules/@gatsbyjs/reach-router$1'
|
||||
},
|
||||
testPathIgnorePatterns: [
|
||||
'node_modules',
|
||||
|
Loading…
Reference in New Issue
Block a user