1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-16 01:13:21 +02:00
portfolio/package.json

75 lines
2.5 KiB
JSON

{
"name": "@kremalicious/portfolio",
"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": "npm run dev",
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.{js,jsx}",
"lint:css": "stylelint ./src/**/*.{css,scss}",
"lint": "npm run svg && npm run lint:js && npm run lint:css",
"build": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js build",
"dev": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js develop",
"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": "node ./scripts/new.js",
"svg": "./scripts/svg.sh"
},
"dependencies": {
"file-saver": "^1.3.8",
"gatsby": "^2.0.6",
"gatsby-image": "^2.0.6",
"gatsby-plugin-favicon": "^3.1.4",
"gatsby-plugin-matomo": "^0.5.0",
"gatsby-plugin-offline": "^2.0.0",
"gatsby-plugin-react-helmet": "^3.0.0",
"gatsby-plugin-sass": "^2.0.0",
"gatsby-plugin-sharp": "^2.0.0",
"gatsby-plugin-sitemap": "^2.0.0",
"gatsby-source-filesystem": "^2.0.1",
"gatsby-transformer-json": "^2.1.1",
"gatsby-transformer-sharp": "^2.1.1",
"gatsby-transformer-yaml": "^2.1.1",
"giphy-js-sdk-core": "^1.0.5",
"graphql": "^0.13.2",
"intersection-observer": "^0.5.0",
"js-yaml": "^3.12.0",
"node-sass": "^4.9.3",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-helmet": "^5.2.0",
"react-markdown": "^3.6.0",
"react-pose": "^3.3.3",
"vcf": "^2.0.1"
},
"devDependencies": {
"@svgr/cli": "^2.4.1",
"ava": "^0.25.0",
"babel-eslint": "^9.0.0",
"chrome-launcher": "^0.10.4",
"eslint": "^5.6.0",
"eslint-config-prettier": "^3.0.1",
"eslint-loader": "^2.1.0",
"eslint-plugin-graphql": "^2.1.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"lighthouse": "^3.1.1",
"ora": "^3.0.0",
"prepend": "^1.0.2",
"prettier": "^1.14.3",
"prettier-stylelint": "^0.4.2",
"slugify": "^1.3.1",
"stylelint": "^9.5.0",
"stylelint-config-css-modules": "^1.3.0",
"stylelint-config-standard": "^18.2.0"
},
"browserslist": [
"defaults"
]
}