package.json 1006 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "rojo.space",
  3. "private": true,
  4. "description": "Website for Rojo",
  5. "version": "0.1.0",
  6. "author": "Lucien Greathouse <me@lpghatguy.com>",
  7. "dependencies": {
  8. "gatsby": "^2.15.14",
  9. "gatsby-image": "^2.2.18",
  10. "gatsby-plugin-manifest": "^2.2.16",
  11. "gatsby-plugin-offline": "^2.2.10",
  12. "gatsby-plugin-react-helmet": "^3.1.7",
  13. "gatsby-plugin-sharp": "^2.2.21",
  14. "gatsby-source-filesystem": "^2.1.22",
  15. "gatsby-transformer-sharp": "^2.2.14",
  16. "prop-types": "^15.7.2",
  17. "react": "^16.9.0",
  18. "react-dom": "^16.9.0",
  19. "react-helmet": "^5.2.1"
  20. },
  21. "devDependencies": {
  22. "gh-pages": "^2.1.1",
  23. "prettier": "^1.18.2"
  24. },
  25. "scripts": {
  26. "build": "gatsby build",
  27. "develop": "gatsby develop",
  28. "format": "prettier --write src/**/*.{js,jsx}",
  29. "start": "npm run develop",
  30. "serve": "gatsby serve",
  31. "deploy": "sh ./bin/generate-docs && gh-pages -d public",
  32. "test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
  33. }
  34. }