1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-16 09:23:21 +02:00
portfolio/package.json

99 lines
3.2 KiB
JSON

{
"name": "@kremalicious/portfolio",
"description": "Portfolio thingy, built with Gatsby",
"version": "0.1.0",
"homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"scripts": {
"start": "gatsby develop --host 0.0.0.0",
"build": "gatsby build",
"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",
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
"test": "npm run lint && jest --coverage --silent",
"test:watch": "npm run lint && jest --coverage --watch",
"deploy:s3": "./scripts/deploy-s3.sh",
"new": "babel-node ./scripts/new.js"
},
"dependencies": {
"@loadable/component": "^5.14.1",
"axios": "^0.21.1",
"file-saver": "^2.0.5",
"gatsby": "^2.32.3",
"gatsby-image": "^2.11.0",
"gatsby-plugin-manifest": "^2.12.0",
"gatsby-plugin-matomo": "^0.9.0",
"gatsby-plugin-offline": "^3.9.0",
"gatsby-plugin-postcss": "^3.6.0",
"gatsby-plugin-react-helmet": "^3.9.0",
"gatsby-plugin-sharp": "^2.13.4",
"gatsby-plugin-sitemap": "^2.11.0",
"gatsby-plugin-svgr": "^2.1.0",
"gatsby-plugin-use-dark-mode": "^1.2.0",
"gatsby-plugin-webpack-size": "^1.0.0",
"gatsby-source-filesystem": "^2.10.0",
"gatsby-transformer-json": "^2.10.0",
"gatsby-transformer-sharp": "^2.11.0",
"gatsby-transformer-yaml": "^2.10.0",
"giphy-js-sdk-core": "^1.0.6",
"intersection-observer": "^0.12.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-feather": "^2.0.9",
"react-helmet": "^6.1.0",
"react-pose": "^4.0.10",
"remark": "^13.0.0",
"remark-breaks": "^2.0.1",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"remark-react": "^8.0.0",
"shortid": "^2.2.16",
"use-dark-mode": "^2.3.1",
"vcf": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@svgr/webpack": "^5.5.0",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@welldone-software/why-did-you-render": "^6.0.5",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.12.1",
"chalk": "^4.1.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-testing-library": "^3.10.1",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.20",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.0",
"js-yaml": "^4.0.0",
"ora": "^5.3.0",
"postcss-preset-env": "^6.7.0",
"prepend": "^1.0.2",
"prettier": "^2.2.1",
"slugify": "^1.4.6",
"stylelint": "^13.9.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-prettier": "^1.1.2"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}