1
0
mirror of https://github.com/kremalicious/blog.git synced 2024-06-28 00:27:58 +02:00
blog/package.json

75 lines
2.3 KiB
JSON

{
"name": "@kremalicious/blog",
"version": "4.0.0",
"author": "Matthias Kretschmann <m@kretschmann.io>",
"description": "Blog of Matthias Kretschmann",
"homepage": "https://kremalicious.com",
"license": "MIT",
"main": "index.js",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"format:css": "prettier-stylelint --write --quiet 'src/**/*.{css,scss}'",
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.jsx",
"lint:css": "stylelint ./src/**/*.{css,scss}",
"lint": "npm run lint:js && npm run lint:css",
"test": "npm run lint",
"deploy": "./scripts/deploy.sh"
},
"browserslist": [
"last 3 versions"
],
"dependencies": {
"@webcomponents/webcomponentsjs": "^2.0.2",
"clipboard": "^2.0.1",
"exif-js": "^2.3.0",
"gatsby": "^2.0.0-beta.43",
"gatsby-image": "^2.0.0-beta.6",
"gatsby-plugin-matomo": "^0.4.1",
"gatsby-plugin-react-helmet": "^3.0.0-beta.3",
"gatsby-plugin-sass": "^2.0.0-beta.5",
"gatsby-plugin-sharp": "^2.0.0-beta.5",
"gatsby-plugin-sitemap": "^2.0.0-beta.2",
"gatsby-remark-autolink-headers": "^2.0.0-beta.3",
"gatsby-remark-images": "^2.0.1-beta.7",
"gatsby-remark-smartypants": "^2.0.0-beta.2",
"gatsby-source-filesystem": "^2.0.1-beta.5",
"gatsby-transformer-remark": "^2.1.1-beta.3",
"gatsby-transformer-sharp": "^2.1.1-beta.5",
"gatsby-transformer-yaml": "^2.1.1-beta.2",
"graphql": "^0.13.2",
"intersection-observer": "^0.5.0",
"node-sass": "^4.9.2",
"normalize-css": "^2.3.1",
"normalize-opentype.css": "^0.2.4",
"qrious": "^4.0.2",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-helmet": "^5.2.0",
"time-elements": "^1.1.0",
"vex-js": "^4.1.0"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"prettier": "^1.13.7",
"prettier-stylelint": "^0.4.2",
"stylelint": "^9.2.1",
"stylelint-config-css-modules": "^1.2.0",
"stylelint-config-standard": "^18.2.0"
},
"engines": {
"node": "^10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/kremalicious/blog.git"
}
}