portfolio/package.json

99 lines
3.2 KiB
JSON
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
2018-07-11 15:54:32 +02:00
"name": "@kremalicious/portfolio",
2018-09-21 21:55:43 +02:00
"description": "Portfolio thingy, built with Gatsby",
2018-03-18 20:39:18 +01:00
"version": "0.1.0",
"homepage": "https://matthiaskretschmann.com",
"repository": "github:kremalicious/portfolio",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
2018-04-22 16:02:34 +02:00
"scripts": {
2019-11-12 22:20:34 +01:00
"start": "gatsby develop --host 0.0.0.0",
2020-11-20 22:50:02 +01:00
"build": "gatsby build",
2018-12-08 20:27:45 +01:00
"ssr": "npm run build && serve -s public/",
2018-08-05 19:04:36 +02:00
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
2018-04-25 23:37:23 +02:00
"lint:css": "stylelint ./src/**/*.{css,scss}",
2018-09-20 19:06:46 +02:00
"lint": "npm run lint:js && npm run lint:css",
2020-03-22 00:27:33 +01:00
"format": "prettier --write 'src/**/*.{js,jsx,css,scss}'",
2019-11-19 23:10:50 +01:00
"test": "npm run lint && jest --coverage --silent",
2019-04-16 03:59:21 +02:00
"test:watch": "npm run lint && jest --coverage --watch",
2018-05-14 01:50:11 +02:00
"deploy": "./scripts/deploy.sh",
2019-11-12 00:05:54 +01:00
"new": "babel-node ./scripts/new.js"
2018-04-22 16:02:34 +02:00
},
2018-03-18 20:39:18 +01:00
"dependencies": {
2020-11-12 01:35:38 +01:00
"@loadable/component": "^5.14.1",
2021-01-30 19:15:09 +01:00
"axios": "^0.21.1",
2020-11-20 22:50:02 +01:00
"file-saver": "^2.0.5",
2021-01-30 19:15:09 +01:00
"gatsby": "^2.31.1",
"gatsby-image": "^2.10.0",
"gatsby-plugin-manifest": "^2.11.0",
2020-04-08 21:05:03 +02:00
"gatsby-plugin-matomo": "^0.8.3",
2021-01-30 19:15:09 +01:00
"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",
2020-11-20 22:50:02 +01:00
"gatsby-plugin-use-dark-mode": "^1.2.0",
"gatsby-plugin-webpack-size": "^1.0.0",
2021-01-30 19:15:09 +01:00
"gatsby-source-filesystem": "^2.10.0",
"gatsby-transformer-json": "^2.10.0",
"gatsby-transformer-sharp": "^2.11.0",
"gatsby-transformer-yaml": "^2.10.0",
2018-10-23 00:50:50 +02:00
"giphy-js-sdk-core": "^1.0.6",
2021-01-30 19:15:09 +01:00
"intersection-observer": "^0.12.0",
2020-11-12 01:35:38 +01:00
"react": "^17.0.1",
"react-dom": "^17.0.1",
2020-11-20 22:50:02 +01:00
"react-feather": "^2.0.9",
2020-06-15 10:57:48 +02:00
"react-helmet": "^6.1.0",
2019-11-16 13:37:25 +01:00
"react-pose": "^4.0.10",
2020-10-17 02:30:15 +02:00
"remark": "^13.0.0",
"remark-breaks": "^2.0.1",
"remark-html": "^13.0.1",
"remark-parse": "^9.0.0",
"remark-react": "^8.0.0",
2019-11-10 15:29:23 +01:00
"shortid": "^2.2.15",
2019-11-28 19:58:49 +01:00
"use-dark-mode": "^2.3.1",
2020-08-03 08:48:02 +02:00
"vcf": "^2.1.0"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
2021-01-30 19:15:09 +01:00
"@babel/core": "^7.12.10",
"@babel/node": "^7.12.10",
"@babel/preset-env": "^7.12.11",
2020-11-20 22:50:02 +01:00
"@svgr/webpack": "^5.5.0",
2021-01-30 19:15:09 +01:00
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.3",
"@welldone-software/why-did-you-render": "^6.0.5",
2020-02-27 00:01:48 +01:00
"babel-eslint": "^10.1.0",
2020-10-17 02:30:15 +02:00
"babel-jest": "^26.5.2",
2021-01-30 19:15:09 +01:00
"babel-preset-gatsby": "^0.11.0",
2020-06-15 10:57:48 +02:00
"chalk": "^4.1.0",
2021-01-30 19:15:09 +01:00
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
2020-05-08 13:13:00 +02:00
"eslint-loader": "^4.0.2",
2020-06-01 12:08:35 +02:00
"eslint-plugin-graphql": "^4.0.0",
2021-01-30 19:15:09 +01:00
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.1.2",
2020-11-20 22:50:02 +01:00
"eslint-plugin-testing-library": "^3.10.1",
2021-01-30 19:15:09 +01:00
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.20",
2019-04-14 03:29:35 +02:00
"identity-obj-proxy": "^3.0.0",
2020-10-17 02:30:15 +02:00
"jest": "^26.5.3",
"jest-canvas-mock": "^2.3.0",
"js-yaml": "^4.0.0",
2021-01-30 19:15:09 +01:00
"ora": "^5.3.0",
"postcss-preset-env": "^6.7.0",
2018-05-14 01:50:11 +02:00
"prepend": "^1.0.2",
2021-01-30 19:15:09 +01:00
"prettier": "^2.2.1",
2020-07-30 19:32:45 +02:00
"slugify": "^1.4.5",
2021-01-30 19:15:09 +01:00
"stylelint": "^13.9.0",
2020-06-22 08:20:34 +02:00
"stylelint-config-prettier": "^8.0.2",
2020-03-22 00:27:33 +01:00
"stylelint-prettier": "^1.1.2"
2018-03-18 20:39:18 +01:00
},
2018-05-25 16:43:04 +02:00
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
2018-05-25 16:43:04 +02:00
]
2018-03-18 20:39:18 +01:00
}