package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "gatsby-starter-default",
  3. "private": true,
  4. "description": "A simple starter to get up and developing quickly with Gatsby",
  5. "version": "0.1.0",
  6. "author": "Kyle Mathews <mathews.kyle@gmail.com>",
  7. "dependencies": {
  8. "axios": "^0.19.0",
  9. "gatsby": "^2.11.7",
  10. "gatsby-image": "^2.2.3",
  11. "gatsby-plugin-manifest": "^2.2.0",
  12. "gatsby-plugin-offline": "^2.2.0",
  13. "gatsby-plugin-react-helmet": "^3.1.0",
  14. "gatsby-plugin-sharp": "^2.2.1",
  15. "gatsby-source-filesystem": "^2.1.1",
  16. "gatsby-transformer-sharp": "^2.2.0",
  17. "prop-types": "^15.7.2",
  18. "react": "^16.8.6",
  19. "react-dom": "^16.8.6",
  20. "react-helmet": "^5.2.1"
  21. },
  22. "devDependencies": {
  23. "prettier": "^1.18.2"
  24. },
  25. "keywords": [
  26. "gatsby"
  27. ],
  28. "license": "MIT",
  29. "scripts": {
  30. "build": "gatsby build",
  31. "develop": "gatsby develop",
  32. "format": "prettier --write src/**/*.{js,jsx}",
  33. "start": "npm run develop",
  34. "serve": "gatsby serve",
  35. "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
  36. },
  37. "repository": {
  38. "type": "git",
  39. "url": "https://github.com/gatsbyjs/gatsby-starter-default"
  40. },
  41. "bugs": {
  42. "url": "https://github.com/gatsbyjs/gatsby/issues"
  43. }
  44. }