portfolio/package.json

90 lines
3.0 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}'",
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": {
"@giphy/js-fetch-api": "^4.1.2",
2022-05-08 15:06:40 +02:00
"@kremalicious/react-feather": "^2.1.0",
2022-04-10 01:52:12 +02:00
"@yaireo/relative-time": "^1.0.2",
2022-05-08 15:14:12 +02:00
"axios": "^0.27.2",
2020-11-20 22:50:02 +01:00
"file-saver": "^2.0.5",
2022-05-08 15:14:12 +02:00
"framer-motion": "^6.3.3",
"gatsby": "^4.13.1",
"gatsby-plugin-image": "^2.13.0",
"gatsby-plugin-manifest": "^4.13.0",
2022-04-10 01:52:12 +02:00
"gatsby-plugin-matomo": "^0.13.0",
2022-05-08 15:14:12 +02:00
"gatsby-plugin-offline": "^5.13.0",
"gatsby-plugin-react-helmet": "^5.13.0",
"gatsby-plugin-sharp": "^4.13.0",
"gatsby-plugin-sitemap": "^5.13.0",
2021-03-12 23:47:28 +01:00
"gatsby-plugin-svgr": "^3.0.0-beta.0",
2022-05-08 15:14:12 +02:00
"gatsby-source-filesystem": "^4.13.0",
"gatsby-transformer-json": "^4.13.0",
"gatsby-transformer-sharp": "^4.13.0",
"gatsby-transformer-yaml": "^4.13.0",
2021-01-30 19:15:09 +01:00
"intersection-observer": "^0.12.0",
2022-05-08 15:14:12 +02:00
"react": "^18.1.0",
"react-dom": "^18.1.0",
2020-06-15 10:57:48 +02:00
"react-helmet": "^6.1.0",
"remark": "13.0.0",
"remark-breaks": "2.0.2",
"remark-html": "13.0.2",
"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-05-08 15:14:12 +02:00
"@babel/node": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@svgr/webpack": "^6.2.1",
2022-04-10 01:52:12 +02:00
"@testing-library/jest-dom": "^5.16.4",
2022-05-08 15:14:12 +02:00
"@testing-library/react": "^13.2.0",
2022-04-10 01:52:12 +02:00
"@welldone-software/why-did-you-render": "^7.0.1",
2022-05-08 15:14:12 +02:00
"babel-preset-gatsby": "^2.13.0",
"chalk": "4.1.2",
2022-05-08 15:14:12 +02:00
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
2020-06-01 12:08:35 +02:00
"eslint-plugin-graphql": "^4.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.4",
2022-05-08 15:14:12 +02:00
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-testing-library": "^5.5.0",
2019-04-14 03:29:35 +02:00
"identity-obj-proxy": "^3.0.0",
2022-05-08 15:14:12 +02:00
"jest": "^28.1.0",
"jest-canvas-mock": "^2.4.0",
"jest-environment-jsdom": "^28.1.0",
2021-05-23 12:30:39 +02:00
"js-yaml": "^4.1.0",
"ora": "^6.1.0",
2018-05-14 01:50:11 +02:00
"prepend": "^1.0.2",
2022-04-10 01:52:12 +02:00
"prettier": "^2.6.2",
"slugify": "^1.6.5",
2022-05-08 15:14:12 +02:00
"stylelint": "^14.8.2",
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",
"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
}