1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-15 17:03:26 +02:00
portfolio/package.json

71 lines
2.4 KiB
JSON
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
"name": "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>",
2018-04-22 16:02:34 +02:00
"scripts": {
2018-04-25 23:37:23 +02:00
"lint:js": "eslint ./gatsby-*.{js,jsx} && eslint ./src/**/*.{js,jsx}",
"lint:css": "stylelint ./src/**/*.{css,scss}",
2018-06-20 23:38:08 +02:00
"lint": "npm run svg && npm run lint:js && npm run lint:css",
2018-06-20 23:26:40 +02:00
"build": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js build",
"start": "npm run svg && ./node_modules/gatsby/dist/bin/gatsby.js develop",
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}'",
2018-04-22 16:02:34 +02:00
"test": "npm run lint",
2018-05-14 01:50:11 +02:00
"deploy": "./scripts/deploy.sh",
2018-06-20 23:38:08 +02:00
"new": "node ./scripts/new.js",
2018-06-20 23:26:40 +02:00
"svg": "./scripts/svg.sh"
2018-04-22 16:02:34 +02:00
},
2018-03-18 20:39:18 +01:00
"dependencies": {
2018-05-06 18:38:40 +02:00
"file-saver": "^1.3.8",
2018-06-22 18:54:29 +02:00
"gatsby": "^2.0.0-beta.9",
2018-06-21 21:06:53 +02:00
"gatsby-image": "^2.0.0-beta.2",
2018-06-23 16:11:57 +02:00
"gatsby-plugin-favicon": "github:TuckerWhitehouse/gatsby-plugin-favicon#gatsby-v2",
"gatsby-plugin-matomo": "^0.4.0",
2018-06-21 21:06:53 +02:00
"gatsby-plugin-offline": "^2.0.0-beta.2",
"gatsby-plugin-react-helmet": "^3.0.0-beta.2",
"gatsby-plugin-sass": "^2.0.0-beta.2",
"gatsby-plugin-sharp": "^2.0.0-beta.2",
"gatsby-plugin-sitemap": "^2.0.0-beta.2",
"gatsby-source-filesystem": "^2.0.1-beta.3",
"gatsby-transformer-json": "^2.1.1-beta.2",
"gatsby-transformer-sharp": "^2.1.1-beta.2",
"gatsby-transformer-yaml": "^2.1.1-beta.2",
2018-05-06 23:22:42 +02:00
"giphy-js-sdk-core": "^1.0.3",
2018-06-19 22:48:33 +02:00
"graphql": "^0.13.2",
2018-05-04 21:48:09 +02:00
"intersection-observer": "^0.5.0",
2018-06-08 14:20:51 +02:00
"js-yaml": "^3.12.0",
2018-06-19 22:48:33 +02:00
"node-sass": "^4.9.0",
"react": "^16.4.1",
"react-dom": "^16.4.1",
2018-04-03 23:17:16 +02:00
"react-helmet": "^5.2.0",
2018-05-08 13:17:38 +02:00
"react-markdown": "^3.3.2",
2018-05-06 18:38:40 +02:00
"react-transition-group": "^2.3.1",
"vcf": "^2.0.1"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
2018-06-20 23:26:40 +02:00
"@svgr/cli": "^2.0.0",
2018-06-23 16:11:57 +02:00
"babel-eslint": "^8.2.5",
"eslint": "^5.0.0",
2018-05-12 22:14:53 +02:00
"eslint-config-prettier": "^2.9.0",
2018-04-27 21:19:19 +02:00
"eslint-loader": "^2.0.0",
2018-05-04 01:58:43 +02:00
"eslint-plugin-graphql": "^2.1.1",
2018-04-08 22:49:58 +02:00
"eslint-plugin-prettier": "^2.6.0",
2018-06-08 14:20:51 +02:00
"eslint-plugin-react": "^7.9.1",
2018-05-14 01:50:11 +02:00
"ora": "^2.1.0",
"prepend": "^1.0.2",
"prettier": "^1.13.5",
2018-05-13 02:20:07 +02:00
"prettier-stylelint": "^0.4.2",
2018-05-14 01:50:11 +02:00
"slugify": "^1.3.0",
2018-05-14 22:30:18 +02:00
"stylelint": "^9.2.1",
2018-06-12 00:03:01 +02:00
"stylelint-config-css-modules": "^1.2.0",
2018-04-08 00:19:54 +02:00
"stylelint-config-standard": "^18.2.0"
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
}