1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-28 16:47:41 +02:00
portfolio/package.json

83 lines
2.8 KiB
JSON

{
"name": "@kremalicious/portfolio",
"description": "Portfolio thingy, built with Gatsby",
"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>",
"scripts": {
"start": "./node_modules/gatsby/dist/bin/gatsby.js develop",
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
"lint:css": "stylelint ./src/**/*.{css,scss}",
"lint": "npm run lint:js && npm run lint:css",
"build": "./node_modules/gatsby/dist/bin/gatsby.js build",
"dev": "./node_modules/gatsby/dist/bin/gatsby.js develop --host 0.0.0.0",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
"test": "npm run lint && ./node_modules/.bin/ava **/*.test.js --verbose",
"deploy": "./scripts/deploy.sh",
"new": "babel-node ./scripts/new.js"
},
"dependencies": {
"file-saver": "^2.0.0-rc.4",
"gatsby": "^2.0.50",
"gatsby-image": "^2.0.20",
"gatsby-plugin-favicon": "^3.1.4",
"gatsby-plugin-matomo": "^0.5.0",
"gatsby-plugin-offline": "^2.0.15",
"gatsby-plugin-react-helmet": "^3.0.2",
"gatsby-plugin-sass": "^2.0.4",
"gatsby-plugin-sharp": "^2.0.12",
"gatsby-plugin-sitemap": "^2.0.2",
"gatsby-plugin-svgr": "^2.0.1",
"gatsby-source-filesystem": "^2.0.8",
"gatsby-transformer-json": "^2.1.5",
"gatsby-transformer-sharp": "^2.1.8",
"gatsby-transformer-yaml": "^2.1.5",
"giphy-js-sdk-core": "^1.0.6",
"graphql": "^0.13.2",
"intersection-observer": "^0.5.1",
"js-yaml": "^3.12.0",
"node-sass": "^4.10.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-helmet": "^5.2.0",
"react-pose": "^4.0.2",
"remark": "^10.0.1",
"remark-html": "^9.0.0",
"remark-parse": "^6.0.3",
"suncalc": "^1.8.0",
"vcf": "^2.0.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@svgr/webpack": "^4.0.3",
"ava": "^0.25.0",
"babel-eslint": "^10.0.0",
"chrome-launcher": "^0.10.5",
"eslint": "^5.8.0",
"eslint-config-prettier": "^3.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-graphql": "^3.0.1",
"eslint-plugin-prettier": "^3.0.0",
"eslint-plugin-react": "^7.11.1",
"lighthouse": "^3.2.1",
"ora": "^3.0.0",
"prepend": "^1.0.2",
"prettier": "^1.15.1",
"prettier-stylelint": "^0.4.2",
"slugify": "^1.3.2",
"stylelint": "^9.7.1",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0",
"why-did-you-update": "^1.0.6"
},
"browserslist": [
"defaults"
]
}