1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-16 01:13:21 +02:00
portfolio/package.json
dependabot-preview[bot] 7619474963
Bump gatsby from 2.21.21 to 2.21.33
Bumps [gatsby](https://github.com/gatsbyjs/gatsby) from 2.21.21 to 2.21.33.
- [Release notes](https://github.com/gatsbyjs/gatsby/releases)
- [Changelog](https://github.com/gatsbyjs/gatsby/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gatsbyjs/gatsby/compare/gatsby@2.21.21...gatsby@2.21.33)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-05-16 21:55:04 +00:00

102 lines
3.3 KiB
JSON

{
"name": "@kremalicious/portfolio",
"description": "Portfolio thingy, built with Gatsby",
"version": "0.1.0",
"homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio",
"bugs": "https://github.com/kremalicious/portfolio/issues",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"scripts": {
"start": "gatsby develop --host 0.0.0.0",
"ssr": "npm run build && serve -s public/",
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
"lint:css": "stylelint ./src/**/*.{css,scss}",
"lint": "npm run lint:js && npm run lint:css",
"build": "gatsby build",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"test": "npm run lint && jest --coverage --silent",
"test:watch": "npm run lint && jest --coverage --watch",
"deploy": "./scripts/deploy.sh",
"new": "babel-node ./scripts/new.js"
},
"dependencies": {
"@loadable/component": "^5.12.0",
"axios": "^0.19.2",
"file-saver": "^2.0.2",
"gatsby": "^2.21.33",
"gatsby-image": "^2.4.3",
"gatsby-plugin-manifest": "^2.4.2",
"gatsby-plugin-matomo": "^0.8.3",
"gatsby-plugin-offline": "^3.2.1",
"gatsby-plugin-postcss": "^2.3.1",
"gatsby-plugin-react-helmet": "^3.3.1",
"gatsby-plugin-sharp": "^2.6.2",
"gatsby-plugin-sitemap": "^2.4.2",
"gatsby-plugin-svgr": "^2.0.2",
"gatsby-plugin-use-dark-mode": "^1.1.2",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-source-filesystem": "^2.3.1",
"gatsby-transformer-json": "^2.4.1",
"gatsby-transformer-sharp": "^2.5.2",
"gatsby-transformer-yaml": "^2.4.1",
"giphy-js-sdk-core": "^1.0.6",
"graphql": "^14.6.0",
"intersection-observer": "^0.10.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-feather": "^2.0.8",
"react-helmet": "^6.0.0",
"react-pose": "^4.0.10",
"remark": "^12.0.0",
"remark-breaks": "^1.0.5",
"remark-html": "^11.0.0",
"remark-parse": "^8.0.2",
"remark-react": "^7.0.0",
"shortid": "^2.2.15",
"use-dark-mode": "^2.3.1",
"vcf": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.6",
"@react-mock/localstorage": "^0.1.2",
"@svgr/webpack": "^5.4.0",
"@testing-library/jest-dom": "^5.7.0",
"@testing-library/react": "^10.0.4",
"@welldone-software/why-did-you-render": "^4.2.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.1",
"chalk": "^4.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-graphql": "^3.1.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-testing-library": "^3.1.2",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.9",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.1",
"jest-canvas-mock": "^2.2.0",
"js-yaml": "^3.13.1",
"ora": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"prepend": "^1.0.2",
"prettier": "^2.0.5",
"slugify": "^1.4.0",
"stylelint": "^13.3.3",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}