1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-26 11:16:40 +02:00
portfolio/package.json
2018-04-08 22:49:58 +02:00

39 lines
1.1 KiB
JSON

{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"dependencies": {
"gatsby": "^1.9.241",
"gatsby-link": "^1.6.39",
"gatsby-plugin-offline": "^1.0.15",
"gatsby-plugin-react-helmet": "^2.0.8",
"gatsby-plugin-react-next": "^1.0.11",
"gatsby-plugin-sass": "^1.0.25",
"gatsby-plugin-sitemap": "^1.2.20",
"gatsby-source-filesystem": "^1.5.28",
"gatsby-transformer-json": "^1.0.16",
"react-helmet": "^5.2.0",
"react-markdown": "^3.3.0",
"react-transition-group": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.2",
"eslint": "^4.19.1",
"eslint-plugin-graphql": "^1.5.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.7.0",
"prettier": "^1.11.1",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"scripts": {
"lint:js": "eslint ./gatsby-*.js && eslint ./src/**/*.js",
"lint:css": "stylelint ./src/**/*.scss",
"lint": "npm run lint:js && npm run lint:css",
"build": "gatsby build",
"start": "gatsby develop",
"format": "prettier --write 'src/**/*.js'",
"test": "npm run lint"
}
}