1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2025-02-14 21:10:41 +01:00

package updates

This commit is contained in:
Matthias Kretschmann 2020-06-01 12:08:35 +02:00
parent a787228e00
commit 6699829972
Signed by: m
GPG Key ID: 606EEEF3C479A91F
4 changed files with 5824 additions and 915 deletions

View File

@ -13,9 +13,6 @@ module.exports = {
siteUrl: `${website}` siteUrl: `${website}`
}, },
plugins: [ plugins: [
'gatsby-transformer-yaml',
'gatsby-transformer-json',
'gatsby-plugin-postcss',
{ {
resolve: 'gatsby-source-filesystem', resolve: 'gatsby-source-filesystem',
options: { options: {
@ -37,6 +34,9 @@ module.exports = {
path: path.join(__dirname, 'src', 'images') path: path.join(__dirname, 'src', 'images')
} }
}, },
'gatsby-transformer-yaml',
'gatsby-transformer-json',
'gatsby-plugin-postcss',
{ {
resolve: 'gatsby-plugin-svgr', resolve: 'gatsby-plugin-svgr',
options: { options: {

6710
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -24,7 +24,7 @@
"@loadable/component": "^5.12.0", "@loadable/component": "^5.12.0",
"axios": "^0.19.2", "axios": "^0.19.2",
"file-saver": "^2.0.2", "file-saver": "^2.0.2",
"gatsby": "^2.22.9", "gatsby": "^2.22.15",
"gatsby-image": "^2.4.5", "gatsby-image": "^2.4.5",
"gatsby-plugin-manifest": "^2.4.9", "gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-matomo": "^0.8.3", "gatsby-plugin-matomo": "^0.8.3",
@ -58,14 +58,14 @@
"vcf": "^2.0.6" "vcf": "^2.0.6"
}, },
"devDependencies": { "devDependencies": {
"@babel/core": "^7.9.6", "@babel/core": "^7.10.2",
"@babel/node": "^7.8.7", "@babel/node": "^7.10.1",
"@babel/preset-env": "^7.9.6", "@babel/preset-env": "^7.10.2",
"@react-mock/localstorage": "^0.1.2", "@react-mock/localstorage": "^0.1.2",
"@svgr/webpack": "^5.4.0", "@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.8.0", "@testing-library/jest-dom": "^5.9.0",
"@testing-library/react": "^10.0.4", "@testing-library/react": "^10.0.4",
"@welldone-software/why-did-you-render": "^4.2.2", "@welldone-software/why-did-you-render": "^4.2.5",
"babel-eslint": "^10.1.0", "babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1", "babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.7", "babel-preset-gatsby": "^0.4.7",
@ -73,12 +73,12 @@
"eslint": "^7.1.0", "eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0", "eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2", "eslint-loader": "^4.0.2",
"eslint-plugin-graphql": "^3.1.1", "eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-prettier": "^3.1.3", "eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.20.0", "eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.2", "eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-testing-library": "^3.1.3", "eslint-plugin-testing-library": "^3.1.4",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.9", "gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.10",
"identity-obj-proxy": "^3.0.0", "identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1", "jest": "^26.0.1",
"jest-canvas-mock": "^2.2.0", "jest-canvas-mock": "^2.2.0",

View File

@ -10,8 +10,7 @@ import { useMeta } from '../../hooks/use-meta'
const LazyVcard = loadable(() => import('../atoms/Vcard')) const LazyVcard = loadable(() => import('../atoms/Vcard'))
const query = graphql` const query = graphql`
query { query FooterQuery {
# the package.json file
portfolioJson { portfolioJson {
bugs bugs
} }