1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-25 18:56:39 +02:00
portfolio/package.json
dependabot-preview[bot] f8fc7c4828
Bump js-yaml from 3.13.1 to 3.14.0
Bumps [js-yaml](https://github.com/nodeca/js-yaml) from 3.13.1 to 3.14.0.
- [Release notes](https://github.com/nodeca/js-yaml/releases)
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nodeca/js-yaml/compare/3.13.1...3.14.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-05-25 05:50:43 +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.22.9",
"gatsby-image": "^2.4.5",
"gatsby-plugin-manifest": "^2.4.9",
"gatsby-plugin-matomo": "^0.8.3",
"gatsby-plugin-offline": "^3.2.7",
"gatsby-plugin-postcss": "^2.3.2",
"gatsby-plugin-react-helmet": "^3.3.2",
"gatsby-plugin-sharp": "^2.6.9",
"gatsby-plugin-sitemap": "^2.4.3",
"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.8",
"gatsby-transformer-json": "^2.4.3",
"gatsby-transformer-sharp": "^2.5.3",
"gatsby-transformer-yaml": "^2.4.2",
"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.2",
"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.8.0",
"@testing-library/react": "^10.0.4",
"@welldone-software/why-did-you-render": "^4.2.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"babel-preset-gatsby": "^0.4.7",
"chalk": "^4.0.0",
"eslint": "^7.0.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.20.0",
"eslint-plugin-react-hooks": "^4.0.2",
"eslint-plugin-testing-library": "^3.1.3",
"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.14.0",
"ora": "^4.0.4",
"postcss-preset-env": "^6.7.0",
"prepend": "^1.0.2",
"prettier": "^2.0.5",
"slugify": "^1.4.0",
"stylelint": "^13.5.0",
"stylelint-config-prettier": "^8.0.1",
"stylelint-prettier": "^1.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}