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",
|
2018-05-14 20:10:59 +02:00
|
|
|
"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",
|
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",
|
2019-06-10 02:52:44 +02:00
|
|
|
"build": "gatsby build",
|
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-02-01 19:00:24 +01:00
|
|
|
"@loadable/component": "^5.12.0",
|
|
|
|
"axios": "^0.19.2",
|
2019-07-25 14:59:24 +02:00
|
|
|
"file-saver": "^2.0.2",
|
2020-06-01 12:08:35 +02:00
|
|
|
"gatsby": "^2.22.15",
|
2020-05-21 09:46:35 +02:00
|
|
|
"gatsby-image": "^2.4.5",
|
2020-06-03 08:11:59 +02:00
|
|
|
"gatsby-plugin-manifest": "^2.4.10",
|
2020-04-08 21:05:03 +02:00
|
|
|
"gatsby-plugin-matomo": "^0.8.3",
|
2020-06-03 02:56:24 +02:00
|
|
|
"gatsby-plugin-offline": "^3.2.8",
|
2020-05-21 07:29:43 +02:00
|
|
|
"gatsby-plugin-postcss": "^2.3.2",
|
2020-05-22 07:31:53 +02:00
|
|
|
"gatsby-plugin-react-helmet": "^3.3.2",
|
2020-06-03 08:29:12 +02:00
|
|
|
"gatsby-plugin-sharp": "^2.6.10",
|
2020-06-03 02:58:37 +02:00
|
|
|
"gatsby-plugin-sitemap": "^2.4.4",
|
2019-03-19 23:21:07 +01:00
|
|
|
"gatsby-plugin-svgr": "^2.0.2",
|
2019-11-28 19:58:49 +01:00
|
|
|
"gatsby-plugin-use-dark-mode": "^1.1.2",
|
2019-10-23 13:20:31 +02:00
|
|
|
"gatsby-plugin-webpack-size": "^1.0.0",
|
2020-06-03 02:59:39 +02:00
|
|
|
"gatsby-source-filesystem": "^2.3.10",
|
2020-05-21 09:48:42 +02:00
|
|
|
"gatsby-transformer-json": "^2.4.3",
|
2020-06-03 08:12:06 +02:00
|
|
|
"gatsby-transformer-sharp": "^2.5.4",
|
2020-06-03 02:57:26 +02:00
|
|
|
"gatsby-transformer-yaml": "^2.4.3",
|
2018-10-23 00:50:50 +02:00
|
|
|
"giphy-js-sdk-core": "^1.0.6",
|
2020-02-01 19:00:24 +01:00
|
|
|
"graphql": "^14.6.0",
|
2020-04-23 20:18:53 +02:00
|
|
|
"intersection-observer": "^0.10.0",
|
2020-03-21 23:55:40 +01:00
|
|
|
"react": "^16.13.1",
|
|
|
|
"react-dom": "^16.13.1",
|
2020-05-08 13:13:00 +02:00
|
|
|
"react-feather": "^2.0.8",
|
2020-04-11 23:40:25 +02:00
|
|
|
"react-helmet": "^6.0.0",
|
2019-11-16 13:37:25 +01:00
|
|
|
"react-pose": "^4.0.10",
|
2020-03-30 13:31:46 +02:00
|
|
|
"remark": "^12.0.0",
|
|
|
|
"remark-breaks": "^1.0.5",
|
2020-05-18 07:32:16 +02:00
|
|
|
"remark-html": "^11.0.2",
|
2020-05-08 13:13:00 +02:00
|
|
|
"remark-parse": "^8.0.2",
|
2020-03-24 08:23:39 +01:00
|
|
|
"remark-react": "^7.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",
|
2019-10-23 13:20:31 +02:00
|
|
|
"vcf": "^2.0.6"
|
2018-03-18 20:39:18 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-01 12:08:35 +02:00
|
|
|
"@babel/core": "^7.10.2",
|
|
|
|
"@babel/node": "^7.10.1",
|
|
|
|
"@babel/preset-env": "^7.10.2",
|
2019-07-14 00:43:09 +02:00
|
|
|
"@react-mock/localstorage": "^0.1.2",
|
2020-05-08 13:13:00 +02:00
|
|
|
"@svgr/webpack": "^5.4.0",
|
2020-06-01 12:08:35 +02:00
|
|
|
"@testing-library/jest-dom": "^5.9.0",
|
2020-06-03 02:53:45 +02:00
|
|
|
"@testing-library/react": "^10.0.6",
|
2020-06-01 12:08:35 +02:00
|
|
|
"@welldone-software/why-did-you-render": "^4.2.5",
|
2020-02-27 00:01:48 +01:00
|
|
|
"babel-eslint": "^10.1.0",
|
2020-05-08 13:13:00 +02:00
|
|
|
"babel-jest": "^26.0.1",
|
2020-06-03 02:50:49 +02:00
|
|
|
"babel-preset-gatsby": "^0.4.8",
|
2020-04-03 11:57:15 +02:00
|
|
|
"chalk": "^4.0.0",
|
2020-05-25 07:53:21 +02:00
|
|
|
"eslint": "^7.1.0",
|
2020-04-21 22:32:21 +02:00
|
|
|
"eslint-config-prettier": "^6.11.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",
|
2020-04-21 22:32:21 +02:00
|
|
|
"eslint-plugin-prettier": "^3.1.3",
|
2020-05-17 00:35:41 +02:00
|
|
|
"eslint-plugin-react": "^7.20.0",
|
2020-06-01 12:08:35 +02:00
|
|
|
"eslint-plugin-react-hooks": "^4.0.4",
|
|
|
|
"eslint-plugin-testing-library": "^3.1.4",
|
|
|
|
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.10",
|
2019-04-14 03:29:35 +02:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2020-05-08 13:13:00 +02:00
|
|
|
"jest": "^26.0.1",
|
2019-11-07 20:26:36 +01:00
|
|
|
"jest-canvas-mock": "^2.2.0",
|
2020-05-25 07:50:43 +02:00
|
|
|
"js-yaml": "^3.14.0",
|
2020-04-21 22:32:21 +02:00
|
|
|
"ora": "^4.0.4",
|
2020-03-07 21:51:40 +01:00
|
|
|
"postcss-preset-env": "^6.7.0",
|
2018-05-14 01:50:11 +02:00
|
|
|
"prepend": "^1.0.2",
|
2020-04-21 22:32:21 +02:00
|
|
|
"prettier": "^2.0.5",
|
2020-03-06 15:28:35 +01:00
|
|
|
"slugify": "^1.4.0",
|
2020-05-21 07:26:18 +02:00
|
|
|
"stylelint": "^13.5.0",
|
2020-03-22 00:27:33 +01:00
|
|
|
"stylelint-config-prettier": "^8.0.1",
|
|
|
|
"stylelint-prettier": "^1.1.2"
|
2018-03-18 20:39:18 +01:00
|
|
|
},
|
2018-05-25 16:43:04 +02:00
|
|
|
"browserslist": [
|
2019-10-23 13:20:31 +02:00
|
|
|
">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
|
|
|
}
|