portfolio/package.json

95 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",
"bugs": "https://github.com/kremalicious/portfolio/issues",
"license": "MIT",
"author": "Matthias Kretschmann <m@kretschmann.io>",
2018-04-22 16:02:34 +02:00
"scripts": {
2019-06-10 02:52:44 +02:00
"start": "gatsby develop",
"start:docker": "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",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
2019-04-14 03:29:35 +02:00
"test": "npm run lint && jest --coverage",
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-06-09 22:53:15 +02:00
"new": "babel-node ./scripts/new.js",
"lh": "lighthousebot --pwa=90 --perf=90 --a11y=90 --bp=90 --seo 90 --runner=wpt"
2018-04-22 16:02:34 +02:00
},
2018-03-18 20:39:18 +01:00
"dependencies": {
"axios": "^0.19.0",
2019-01-04 14:19:34 +01:00
"classnames": "^2.2.6",
2019-02-20 23:16:08 +01:00
"file-saver": "^2.0.1",
2019-06-10 02:52:44 +02:00
"gatsby": "^2.8.6",
2019-06-07 17:27:15 +02:00
"gatsby-image": "^2.1.2",
"gatsby-plugin-manifest": "^2.1.1",
2019-06-10 02:52:44 +02:00
"gatsby-plugin-matomo": "^0.7.1",
"gatsby-plugin-offline": "^2.1.1",
2019-04-14 02:09:46 +02:00
"gatsby-plugin-react-helmet": "^3.0.12",
2019-03-19 23:21:07 +01:00
"gatsby-plugin-sass": "^2.0.11",
2019-06-07 17:27:15 +02:00
"gatsby-plugin-sharp": "^2.1.3",
2019-06-10 02:52:44 +02:00
"gatsby-plugin-sitemap": "^2.1.0",
2019-03-19 23:21:07 +01:00
"gatsby-plugin-svgr": "^2.0.2",
2019-06-07 17:27:15 +02:00
"gatsby-source-filesystem": "^2.0.38",
2019-03-19 23:21:07 +01:00
"gatsby-transformer-json": "^2.1.11",
2019-06-07 17:27:15 +02:00
"gatsby-transformer-sharp": "^2.1.21",
2019-04-27 23:53:26 +02:00
"gatsby-transformer-yaml": "^2.1.12",
2018-10-23 00:50:50 +02:00
"giphy-js-sdk-core": "^1.0.6",
2019-05-25 13:26:57 +02:00
"graphql": "^14.3.1",
"intersection-observer": "^0.7.0",
2019-03-29 22:59:45 +01:00
"react": "^16.8.6",
"react-dom": "^16.8.6",
2019-06-10 02:52:44 +02:00
"react-helmet": "^5.2.1",
2019-03-19 23:21:07 +01:00
"react-pose": "^4.0.8",
"remark": "^10.0.1",
"remark-html": "^9.0.0",
"remark-parse": "^6.0.3",
2018-09-28 19:38:49 +02:00
"suncalc": "^1.8.0",
2019-03-23 18:04:54 +01:00
"vcf": "^2.0.4"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
2019-05-25 13:26:57 +02:00
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/preset-env": "^7.4.5",
2019-05-28 17:28:29 +02:00
"@svgr/webpack": "^4.3.0",
2019-05-30 22:55:12 +02:00
"@testing-library/react": "^8.0.1",
2018-11-25 02:26:11 +01:00
"babel-eslint": "^10.0.1",
2019-04-14 03:29:35 +02:00
"babel-jest": "^24.7.1",
"babel-preset-gatsby": "^0.1.11",
2019-05-26 22:20:16 +02:00
"chalk": "^2.4.2",
"eslint": "^6.0.0",
"eslint-config-prettier": "^5.0.0",
2019-02-20 23:16:08 +01:00
"eslint-loader": "^2.1.2",
2019-02-03 17:59:51 +01:00
"eslint-plugin-graphql": "^3.0.3",
"eslint-plugin-prettier": "^3.0.1",
2019-01-20 14:24:33 +01:00
"eslint-plugin-react": "^7.12.4",
2019-05-25 13:26:57 +02:00
"eslint-plugin-react-hooks": "^1.6.0",
2019-04-14 03:29:35 +02:00
"identity-obj-proxy": "^3.0.0",
"jest": "^24.7.1",
2019-04-27 23:53:26 +02:00
"jest-canvas-mock": "^2.0.0",
2019-05-25 13:26:57 +02:00
"jest-dom": "^3.4.0",
2019-06-10 02:52:44 +02:00
"js-yaml": "^3.13.1",
2019-06-09 22:53:15 +02:00
"lighthousebot": "git+https://github.com/GoogleChromeLabs/lighthousebot.git",
2019-06-10 02:52:44 +02:00
"node-sass": "^4.12.0",
2019-04-14 02:09:46 +02:00
"ora": "^3.4.0",
2018-05-14 01:50:11 +02:00
"prepend": "^1.0.2",
2019-06-07 17:27:15 +02:00
"prettier": "^1.18.2",
"prettier-stylelint": "^0.4.2",
2018-12-07 10:05:12 +01:00
"slugify": "^1.3.4",
2019-06-07 17:27:15 +02:00
"stylelint": "^10.1.0",
2018-07-11 15:54:32 +02:00
"stylelint-config-css-modules": "^1.3.0",
2019-04-14 02:09:46 +02:00
"stylelint-config-standard": "^18.3.0",
"why-did-you-update": "^1.0.6"
2018-03-18 20:39:18 +01:00
},
2018-05-25 16:43:04 +02:00
"browserslist": [
"defaults"
]
2018-03-18 20:39:18 +01:00
}