mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 17:23:22 +01:00
package updates
This commit is contained in:
parent
d26b411f6b
commit
4b3ca8bf69
26140
package-lock.json
generated
26140
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
52
package.json
52
package.json
@ -8,11 +8,11 @@
|
|||||||
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "gatsby develop --host 0.0.0.0",
|
"start": "gatsby develop --host 0.0.0.0",
|
||||||
|
"build": "gatsby build",
|
||||||
"ssr": "npm run build && serve -s public/",
|
"ssr": "npm run build && serve -s public/",
|
||||||
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
|
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
|
||||||
"lint:css": "stylelint ./src/**/*.{css,scss}",
|
"lint:css": "stylelint ./src/**/*.{css,scss}",
|
||||||
"lint": "npm run lint:js && npm run lint:css",
|
"lint": "npm run lint:js && npm run lint:css",
|
||||||
"build": "gatsby build",
|
|
||||||
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
|
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
|
||||||
"test": "npm run lint && jest --coverage --silent",
|
"test": "npm run lint && jest --coverage --silent",
|
||||||
"test:watch": "npm run lint && jest --coverage --watch",
|
"test:watch": "npm run lint && jest --coverage --watch",
|
||||||
@ -22,28 +22,28 @@
|
|||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@loadable/component": "^5.14.1",
|
"@loadable/component": "^5.14.1",
|
||||||
"axios": "^0.21.0",
|
"axios": "^0.21.0",
|
||||||
"file-saver": "^2.0.2",
|
"file-saver": "^2.0.5",
|
||||||
"gatsby": "^2.24.80",
|
"gatsby": "^2.27.0",
|
||||||
"gatsby-image": "^2.4.21",
|
"gatsby-image": "^2.6.0",
|
||||||
"gatsby-plugin-manifest": "^2.4.35",
|
"gatsby-plugin-manifest": "^2.7.0",
|
||||||
"gatsby-plugin-matomo": "^0.8.3",
|
"gatsby-plugin-matomo": "^0.8.3",
|
||||||
"gatsby-plugin-offline": "^3.2.33",
|
"gatsby-plugin-offline": "^3.5.0",
|
||||||
"gatsby-plugin-postcss": "^3.0.3",
|
"gatsby-plugin-postcss": "^3.2.0",
|
||||||
"gatsby-plugin-react-helmet": "^3.3.14",
|
"gatsby-plugin-react-helmet": "^3.5.0",
|
||||||
"gatsby-plugin-sharp": "^2.6.42",
|
"gatsby-plugin-sharp": "^2.9.0",
|
||||||
"gatsby-plugin-sitemap": "^2.4.17",
|
"gatsby-plugin-sitemap": "^2.7.0",
|
||||||
"gatsby-plugin-svgr": "^2.0.2",
|
"gatsby-plugin-svgr": "^2.0.2",
|
||||||
"gatsby-plugin-use-dark-mode": "^1.1.2",
|
"gatsby-plugin-use-dark-mode": "^1.2.0",
|
||||||
"gatsby-plugin-webpack-size": "^1.0.0",
|
"gatsby-plugin-webpack-size": "^1.0.0",
|
||||||
"gatsby-source-filesystem": "^2.3.35",
|
"gatsby-source-filesystem": "^2.6.0",
|
||||||
"gatsby-transformer-json": "^2.4.15",
|
"gatsby-transformer-json": "^2.6.0",
|
||||||
"gatsby-transformer-sharp": "^2.5.18",
|
"gatsby-transformer-sharp": "^2.7.0",
|
||||||
"gatsby-transformer-yaml": "^2.4.14",
|
"gatsby-transformer-yaml": "^2.6.0",
|
||||||
"giphy-js-sdk-core": "^1.0.6",
|
"giphy-js-sdk-core": "^1.0.6",
|
||||||
"intersection-observer": "^0.11.0",
|
"intersection-observer": "^0.11.0",
|
||||||
"react": "^17.0.1",
|
"react": "^17.0.1",
|
||||||
"react-dom": "^17.0.1",
|
"react-dom": "^17.0.1",
|
||||||
"react-feather": "^2.0.8",
|
"react-feather": "^2.0.9",
|
||||||
"react-helmet": "^6.1.0",
|
"react-helmet": "^6.1.0",
|
||||||
"react-pose": "^4.0.10",
|
"react-pose": "^4.0.10",
|
||||||
"remark": "^13.0.0",
|
"remark": "^13.0.0",
|
||||||
@ -56,16 +56,16 @@
|
|||||||
"vcf": "^2.1.0"
|
"vcf": "^2.1.0"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.12.3",
|
"@babel/core": "^7.12.7",
|
||||||
"@babel/node": "^7.12.1",
|
"@babel/node": "^7.12.1",
|
||||||
"@babel/preset-env": "^7.12.1",
|
"@babel/preset-env": "^7.12.7",
|
||||||
"@svgr/webpack": "^5.4.0",
|
"@svgr/webpack": "^5.5.0",
|
||||||
"@testing-library/jest-dom": "^5.11.4",
|
"@testing-library/jest-dom": "^5.11.6",
|
||||||
"@testing-library/react": "^11.1.0",
|
"@testing-library/react": "^11.2.1",
|
||||||
"@welldone-software/why-did-you-render": "^6.0.0-rc.1",
|
"@welldone-software/why-did-you-render": "^6.0.0-rc.1",
|
||||||
"babel-eslint": "^10.1.0",
|
"babel-eslint": "^10.1.0",
|
||||||
"babel-jest": "^26.5.2",
|
"babel-jest": "^26.5.2",
|
||||||
"babel-preset-gatsby": "^0.5.14",
|
"babel-preset-gatsby": "^0.7.0",
|
||||||
"chalk": "^4.1.0",
|
"chalk": "^4.1.0",
|
||||||
"eslint": "^7.11.0",
|
"eslint": "^7.11.0",
|
||||||
"eslint-config-prettier": "^6.15.0",
|
"eslint-config-prettier": "^6.15.0",
|
||||||
@ -74,8 +74,8 @@
|
|||||||
"eslint-plugin-prettier": "^3.1.4",
|
"eslint-plugin-prettier": "^3.1.4",
|
||||||
"eslint-plugin-react": "^7.21.4",
|
"eslint-plugin-react": "^7.21.4",
|
||||||
"eslint-plugin-react-hooks": "^4.1.2",
|
"eslint-plugin-react-hooks": "^4.1.2",
|
||||||
"eslint-plugin-testing-library": "^3.9.2",
|
"eslint-plugin-testing-library": "^3.10.1",
|
||||||
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.13",
|
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.16",
|
||||||
"identity-obj-proxy": "^3.0.0",
|
"identity-obj-proxy": "^3.0.0",
|
||||||
"jest": "^26.5.3",
|
"jest": "^26.5.3",
|
||||||
"jest-canvas-mock": "^2.3.0",
|
"jest-canvas-mock": "^2.3.0",
|
||||||
@ -83,9 +83,9 @@
|
|||||||
"ora": "^5.1.0",
|
"ora": "^5.1.0",
|
||||||
"postcss-preset-env": "^6.7.0",
|
"postcss-preset-env": "^6.7.0",
|
||||||
"prepend": "^1.0.2",
|
"prepend": "^1.0.2",
|
||||||
"prettier": "^2.1.2",
|
"prettier": "^2.2.0",
|
||||||
"slugify": "^1.4.5",
|
"slugify": "^1.4.5",
|
||||||
"stylelint": "^13.7.2",
|
"stylelint": "^13.8.0",
|
||||||
"stylelint-config-prettier": "^8.0.2",
|
"stylelint-config-prettier": "^8.0.2",
|
||||||
"stylelint-prettier": "^1.1.2"
|
"stylelint-prettier": "^1.1.2"
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user