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",
|
|
|
|
"bugs": "https://github.com/kremalicious/portfolio/issues",
|
|
|
|
"license": "MIT",
|
|
|
|
"author": "Matthias Kretschmann <m@kretschmann.io>",
|
2018-04-22 16:02:34 +02:00
|
|
|
"scripts": {
|
2018-09-20 22:38:10 +02:00
|
|
|
"start": "./node_modules/gatsby/dist/bin/gatsby.js develop",
|
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",
|
|
|
|
"build": "./node_modules/gatsby/dist/bin/gatsby.js build",
|
2018-09-20 22:38:10 +02:00
|
|
|
"dev": "./node_modules/gatsby/dist/bin/gatsby.js develop --host 0.0.0.0",
|
2018-04-25 23:37:23 +02:00
|
|
|
"format": "prettier --write 'src/**/*.{js,jsx}'",
|
2018-05-13 02:20:07 +02:00
|
|
|
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
|
2019-01-20 14:43:15 +01:00
|
|
|
"test": "npm run lint",
|
2018-05-14 01:50:11 +02:00
|
|
|
"deploy": "./scripts/deploy.sh",
|
2018-09-24 00:13:41 +02:00
|
|
|
"new": "babel-node ./scripts/new.js"
|
2018-04-22 16:02:34 +02:00
|
|
|
},
|
2018-03-18 20:39:18 +01:00
|
|
|
"dependencies": {
|
2019-01-04 14:19:34 +01:00
|
|
|
"classnames": "^2.2.6",
|
2018-11-25 02:26:11 +01:00
|
|
|
"file-saver": "^2.0.0",
|
2019-01-16 14:58:18 +01:00
|
|
|
"gatsby": "^2.0.91",
|
|
|
|
"gatsby-image": "^2.0.26",
|
2019-01-01 19:35:42 +01:00
|
|
|
"gatsby-plugin-favicon": "^3.1.5",
|
2018-12-05 21:27:32 +01:00
|
|
|
"gatsby-plugin-matomo": "^0.6.0",
|
2019-01-16 14:58:18 +01:00
|
|
|
"gatsby-plugin-offline": "^2.0.21",
|
2019-01-01 19:35:42 +01:00
|
|
|
"gatsby-plugin-react-helmet": "^3.0.5",
|
2018-12-07 10:05:12 +01:00
|
|
|
"gatsby-plugin-sass": "^2.0.7",
|
2019-01-01 19:35:42 +01:00
|
|
|
"gatsby-plugin-sharp": "^2.0.17",
|
|
|
|
"gatsby-plugin-sitemap": "^2.0.4",
|
2018-11-17 14:58:27 +01:00
|
|
|
"gatsby-plugin-svgr": "^2.0.1",
|
2019-01-16 14:58:18 +01:00
|
|
|
"gatsby-source-filesystem": "^2.0.16",
|
|
|
|
"gatsby-transformer-json": "^2.1.7",
|
2019-01-01 19:35:42 +01:00
|
|
|
"gatsby-transformer-sharp": "^2.1.10",
|
2019-01-16 14:58:18 +01:00
|
|
|
"gatsby-transformer-yaml": "^2.1.7",
|
2018-10-23 00:50:50 +02:00
|
|
|
"giphy-js-sdk-core": "^1.0.6",
|
2018-06-19 22:48:33 +02:00
|
|
|
"graphql": "^0.13.2",
|
2018-10-23 00:50:50 +02:00
|
|
|
"intersection-observer": "^0.5.1",
|
2019-01-16 14:58:18 +01:00
|
|
|
"js-yaml": "^3.12.1",
|
2018-12-09 15:04:51 +01:00
|
|
|
"node-sass": "^4.11.0",
|
2019-01-01 19:35:42 +01:00
|
|
|
"react": "^16.7.0",
|
|
|
|
"react-dom": "^16.7.0",
|
2018-04-03 23:17:16 +02:00
|
|
|
"react-helmet": "^5.2.0",
|
2019-01-16 14:58:18 +01:00
|
|
|
"react-pose": "^4.0.5",
|
2018-11-25 01:52:25 +01:00
|
|
|
"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",
|
2018-05-06 18:38:40 +02:00
|
|
|
"vcf": "^2.0.1"
|
2018-03-18 20:39:18 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2018-12-15 19:23:34 +01:00
|
|
|
"@babel/core": "^7.2.2",
|
|
|
|
"@babel/node": "^7.2.2",
|
2019-01-01 19:35:42 +01:00
|
|
|
"@babel/preset-env": "^7.2.3",
|
2018-11-25 02:26:11 +01:00
|
|
|
"@svgr/webpack": "^4.1.0",
|
|
|
|
"babel-eslint": "^10.0.1",
|
2019-01-20 14:24:33 +01:00
|
|
|
"eslint": "^5.12.1",
|
|
|
|
"eslint-config-prettier": "^3.6.0",
|
2018-11-25 02:26:11 +01:00
|
|
|
"eslint-loader": "^2.1.1",
|
2018-11-15 01:54:01 +01:00
|
|
|
"eslint-plugin-graphql": "^3.0.1",
|
2019-01-01 19:35:42 +01:00
|
|
|
"eslint-plugin-prettier": "^3.0.1",
|
2019-01-20 14:24:33 +01:00
|
|
|
"eslint-plugin-react": "^7.12.4",
|
2018-07-18 00:31:31 +02:00
|
|
|
"ora": "^3.0.0",
|
2018-05-14 01:50:11 +02:00
|
|
|
"prepend": "^1.0.2",
|
2019-01-20 14:24:33 +01:00
|
|
|
"prettier": "^1.16.0",
|
2018-05-13 02:20:07 +02:00
|
|
|
"prettier-stylelint": "^0.4.2",
|
2018-12-07 10:05:12 +01:00
|
|
|
"slugify": "^1.3.4",
|
2019-01-20 14:24:33 +01:00
|
|
|
"stylelint": "^9.10.1",
|
2018-07-11 15:54:32 +02:00
|
|
|
"stylelint-config-css-modules": "^1.3.0",
|
2018-11-17 14:58:27 +01:00
|
|
|
"stylelint-config-standard": "^18.2.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
|
|
|
}
|