portfolio/package.json

43 lines
1.2 KiB
JSON
Raw Normal View History

2018-03-18 20:39:18 +01:00
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
2018-04-11 13:46:55 +02:00
"gatsby": "^1.9.248",
2018-04-06 17:24:35 +02:00
"gatsby-link": "^1.6.39",
2018-04-11 12:46:55 +02:00
"gatsby-plugin-google-analytics": "^1.0.28",
2018-04-06 17:24:35 +02:00
"gatsby-plugin-react-helmet": "^2.0.8",
2018-04-08 00:19:54 +02:00
"gatsby-plugin-react-next": "^1.0.11",
2018-04-08 17:25:18 +02:00
"gatsby-plugin-sass": "^1.0.25",
2018-04-08 00:19:54 +02:00
"gatsby-plugin-sitemap": "^1.2.20",
2018-04-11 13:46:55 +02:00
"gatsby-source-filesystem": "^1.5.29",
2018-04-07 14:18:06 +02:00
"gatsby-transformer-json": "^1.0.16",
2018-04-03 23:17:16 +02:00
"react-helmet": "^5.2.0",
2018-04-07 14:18:06 +02:00
"react-markdown": "^3.3.0",
2018-04-02 16:57:30 +02:00
"react-transition-group": "^2.3.0"
2018-03-18 20:39:18 +01:00
},
"devDependencies": {
2018-04-07 14:18:06 +02:00
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
2018-04-09 19:43:51 +02:00
"eslint-plugin-compat": "^2.2.0",
2018-04-07 14:18:06 +02:00
"eslint-plugin-graphql": "^1.5.0",
2018-04-08 22:49:58 +02:00
"eslint-plugin-prettier": "^2.6.0",
2018-04-07 14:18:06 +02:00
"eslint-plugin-react": "^7.7.0",
2018-04-08 00:19:54 +02:00
"prettier": "^1.11.1",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
2018-03-18 20:39:18 +01:00
},
"scripts": {
2018-04-08 22:49:58 +02:00
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.js",
2018-04-08 00:19:54 +02:00
"lint:css": "stylelint ./src/**/*.scss",
"lint": "npm run lint:js && npm run lint:css",
2018-04-06 17:24:35 +02:00
"build": "gatsby build",
"start": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
2018-04-08 00:19:54 +02:00
"test": "npm run lint"
2018-04-09 19:43:51 +02:00
},
"browserslist": [
"defaults"
]
2018-03-18 20:39:18 +01:00
}