portfolio/package.json

64 lines
2.0 KiB
JSON
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
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-04-22 16:02:34 +02:00
"lint": "npm run lint:js && npm run lint:css",
"build": "gatsby build",
"start": "gatsby 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",
"new": "node ./scripts/new-project.js"
2018-04-22 16:02:34 +02:00
},
2018-03-18 20:39:18 +01:00
"dependencies": {
"camel-case": "^3.0.0",
2018-05-06 18:38:40 +02:00
"file-saver": "^1.3.8",
2018-05-12 02:06:57 +02:00
"gatsby": "^1.9.260",
2018-05-04 12:15:52 +02:00
"gatsby-image": "^1.0.51",
"gatsby-link": "^1.6.44",
2018-05-07 01:43:33 +02:00
"gatsby-plugin-favicon": "^2.1.1",
2018-04-19 22:33:56 +02:00
"gatsby-plugin-google-analytics": "^1.0.31",
2018-05-11 00:30:16 +02:00
"gatsby-plugin-matomo": "^0.3.0",
2018-05-07 20:34:30 +02:00
"gatsby-plugin-offline": "^1.0.16",
2018-04-19 22:33:56 +02:00
"gatsby-plugin-react-helmet": "^2.0.11",
2018-04-08 00:19:54 +02:00
"gatsby-plugin-react-next": "^1.0.11",
2018-04-21 13:39:18 +02:00
"gatsby-plugin-remove-trailing-slashes": "^1.0.9",
2018-04-19 22:33:56 +02:00
"gatsby-plugin-sass": "^1.0.26",
2018-05-04 01:58:43 +02:00
"gatsby-plugin-sharp": "^1.6.44",
2018-05-08 17:19:08 +02:00
"gatsby-plugin-sitemap": "^1.2.23",
2018-04-22 23:51:50 +02:00
"gatsby-plugin-svgr": "^1.0.0",
2018-05-04 01:58:43 +02:00
"gatsby-source-filesystem": "^1.5.35",
"gatsby-transformer-sharp": "^1.6.24",
2018-05-05 00:17:26 +02:00
"gatsby-transformer-yaml": "^1.5.16",
2018-05-06 23:22:42 +02:00
"giphy-js-sdk-core": "^1.0.3",
2018-05-04 21:48:09 +02:00
"intersection-observer": "^0.5.0",
2018-05-05 00:17:26 +02:00
"js-yaml": "^3.11.0",
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-04-15 21:28:25 +02:00
"babel-eslint": "^8.2.3",
2018-04-07 14:18:06 +02:00
"eslint": "^4.19.1",
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-04-09 19:43:51 +02:00
"eslint-plugin-compat": "^2.2.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-05-13 21:50:55 +02:00
"eslint-plugin-react": "^7.8.2",
2018-05-14 01:50:11 +02:00
"ora": "^2.1.0",
"prepend": "^1.0.2",
2018-04-18 21:01:26 +02:00
"prettier": "^1.12.1",
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-04-08 00:19:54 +02:00
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
2018-03-18 20:39:18 +01:00
},
2018-05-14 01:50:11 +02:00
"browserslist": ["defaults"]
2018-03-18 20:39:18 +01:00
}