Skip to content

Instantly share code, notes, and snippets.

@collegeimprovements
Created March 15, 2019 12:16
Show Gist options
  • Save collegeimprovements/81b351092dcd8caa0debdf5521439834 to your computer and use it in GitHub Desktop.
Save collegeimprovements/81b351092dcd8caa0debdf5521439834 to your computer and use it in GitHub Desktop.
basic gatsby with essential libs
{
"name": "gatsby-starter-default",
"private": true,
"description": "A simple starter to get up and developing quickly with Gatsby",
"version": "0.1.0",
"author": "Kyle Mathews <[email protected]>",
"dependencies": {
"date-fns": "^1.30.1",
"gatsby": "^2.1.34",
"gatsby-image": "^2.0.33",
"gatsby-plugin-manifest": "^2.0.24",
"gatsby-plugin-offline": "^2.0.25",
"gatsby-plugin-react-helmet": "^3.0.9",
"gatsby-plugin-sharp": "^2.0.28",
"gatsby-source-filesystem": "^2.0.26",
"gatsby-source-graphql": "^2.0.14",
"gatsby-transformer-sharp": "^2.1.17",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"react-helmet": "^5.2.0",
"styled-components": "^4.1.3",
"styled-system": "^4.0.4",
"xstate": "^4.3.3"
},
"devDependencies": {
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"prettier": "^1.16.4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"precommit": "lint-staged && npm test"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment