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",
|
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}'",
|
2021-03-13 22:34:52 +01:00
|
|
|
"test": "NODE_ENV=test npm run lint && jest --coverage -c tests/jest.config.js",
|
2021-02-06 14:46:53 +01:00
|
|
|
"test:watch": "NODE_ENV=test npm run lint && jest --coverage --watch -c tests/jest.config.js",
|
2021-02-06 13:19:30 +01:00
|
|
|
"deploy:s3": "./scripts/deploy-s3.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": {
|
2021-09-10 21:10:16 +02:00
|
|
|
"@giphy/js-fetch-api": "^4.1.2",
|
2021-10-19 22:47:19 +02:00
|
|
|
"@yaireo/relative-time": "^1.0.1",
|
2022-02-14 11:11:29 +01:00
|
|
|
"axios": "^0.26.0",
|
2020-11-20 22:50:02 +01:00
|
|
|
"file-saver": "^2.0.5",
|
2022-03-11 20:18:43 +01:00
|
|
|
"framer-motion": "^6.2.8",
|
2022-02-21 10:27:45 +01:00
|
|
|
"gatsby": "^4.7.2",
|
2022-02-12 14:51:58 +01:00
|
|
|
"gatsby-plugin-image": "^2.7.0",
|
2022-03-11 20:32:27 +01:00
|
|
|
"gatsby-plugin-manifest": "^4.9.1",
|
2021-11-28 17:12:27 +01:00
|
|
|
"gatsby-plugin-matomo": "^0.11.0",
|
2022-02-12 14:51:58 +01:00
|
|
|
"gatsby-plugin-offline": "^5.7.0",
|
2022-03-11 20:18:33 +01:00
|
|
|
"gatsby-plugin-react-helmet": "^5.9.0",
|
2022-03-11 20:32:38 +01:00
|
|
|
"gatsby-plugin-sharp": "^4.9.1",
|
2022-02-12 14:51:58 +01:00
|
|
|
"gatsby-plugin-sitemap": "^5.7.0",
|
2021-03-12 23:47:28 +01:00
|
|
|
"gatsby-plugin-svgr": "^3.0.0-beta.0",
|
2022-02-12 14:51:58 +01:00
|
|
|
"gatsby-source-filesystem": "^4.7.0",
|
|
|
|
"gatsby-transformer-json": "^4.7.0",
|
2022-03-11 20:10:54 +01:00
|
|
|
"gatsby-transformer-sharp": "^4.9.0",
|
2022-03-11 20:20:26 +01:00
|
|
|
"gatsby-transformer-yaml": "^4.9.0",
|
2021-01-30 19:15:09 +01:00
|
|
|
"intersection-observer": "^0.12.0",
|
2021-05-23 12:30:39 +02:00
|
|
|
"react": "^17.0.2",
|
|
|
|
"react-dom": "^17.0.2",
|
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",
|
2020-10-17 02:30:15 +02:00
|
|
|
"remark": "^13.0.0",
|
2021-05-23 12:30:39 +02:00
|
|
|
"remark-breaks": "^2.0.2",
|
2021-09-10 21:02:14 +02:00
|
|
|
"remark-html": "^13.0.2",
|
2020-10-17 02:30:15 +02:00
|
|
|
"remark-parse": "^9.0.0",
|
|
|
|
"remark-react": "^8.0.0",
|
2022-02-12 14:51:58 +01:00
|
|
|
"vcf": "^2.1.1"
|
2018-03-18 20:39:18 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-17 10:08:39 +01:00
|
|
|
"@babel/node": "^7.16.8",
|
2022-01-24 09:36:07 +01:00
|
|
|
"@babel/preset-env": "^7.16.11",
|
2021-12-13 10:42:55 +01:00
|
|
|
"@loadable/component": "^5.15.2",
|
2022-01-31 13:26:24 +01:00
|
|
|
"@svgr/webpack": "^6.2.1",
|
2022-02-12 14:51:58 +01:00
|
|
|
"@testing-library/jest-dom": "^5.16.2",
|
2022-02-21 10:27:33 +01:00
|
|
|
"@testing-library/react": "^12.1.3",
|
2021-11-28 17:12:27 +01:00
|
|
|
"@welldone-software/why-did-you-render": "^6.2.3",
|
2022-03-11 20:32:54 +01:00
|
|
|
"babel-preset-gatsby": "^2.9.1",
|
2021-08-28 13:05:02 +02:00
|
|
|
"chalk": "^4.1.2",
|
2022-03-11 20:10:09 +01:00
|
|
|
"eslint": "^8.10.0",
|
2022-02-21 10:27:22 +01:00
|
|
|
"eslint-config-prettier": "^8.4.0",
|
2020-06-01 12:08:35 +02:00
|
|
|
"eslint-plugin-graphql": "^4.0.0",
|
2021-09-10 20:55:46 +02:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2021-12-30 13:31:27 +01:00
|
|
|
"eslint-plugin-react": "^7.28.0",
|
2021-11-28 17:22:13 +01:00
|
|
|
"eslint-plugin-react-hooks": "^4.3.0",
|
2022-02-12 14:51:58 +01:00
|
|
|
"eslint-plugin-testing-library": "^5.0.5",
|
2019-04-14 03:29:35 +02:00
|
|
|
"identity-obj-proxy": "^3.0.0",
|
2022-02-12 14:51:58 +01:00
|
|
|
"jest": "^27.5.1",
|
2021-02-08 05:05:47 +01:00
|
|
|
"jest-canvas-mock": "^2.3.1",
|
2021-05-23 12:30:39 +02:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-03-11 20:10:29 +01:00
|
|
|
"ora": "^6.1.0",
|
2018-05-14 01:50:11 +02:00
|
|
|
"prepend": "^1.0.2",
|
2021-12-06 11:17:32 +01:00
|
|
|
"prettier": "^2.5.1",
|
2022-01-10 10:52:26 +01:00
|
|
|
"slugify": "^1.6.5",
|
2022-02-21 10:27:14 +01:00
|
|
|
"stylelint": "^14.5.1",
|
2021-10-16 23:06:25 +02:00
|
|
|
"stylelint-config-prettier": "^9.0.3",
|
2021-11-28 17:12:27 +01:00
|
|
|
"stylelint-prettier": "^2.0.0"
|
2018-03-18 20:39:18 +01:00
|
|
|
},
|
2018-05-25 16:43:04 +02:00
|
|
|
"browserslist": [
|
2021-09-19 16:36:54 +02:00
|
|
|
"> 0.2%",
|
|
|
|
"last 2 versions",
|
|
|
|
"Firefox ESR",
|
2019-10-23 13:20:31 +02:00
|
|
|
"not dead",
|
2021-09-19 16:36:54 +02:00
|
|
|
"not IE 11"
|
2018-05-25 16:43:04 +02:00
|
|
|
]
|
2018-03-18 20:39:18 +01:00
|
|
|
}
|