package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "rojo.space",
  3. "private": true,
  4. "description": "Website for Rojo",
  5. "version": "0.2.0",
  6. "author": "Lucien Greathouse <me@lpghatguy.com>",
  7. "scripts": {
  8. "start": "react-static start",
  9. "stage": "react-static build --staging",
  10. "build": "react-static build --debug",
  11. "analyze": "react-static build --analyze",
  12. "serve": "serve dist -p 3000",
  13. "format": "prettier --write src/**/*.{js,jsx}",
  14. "deploy": "sh ./bin/generate-docs && gh-pages -d public"
  15. },
  16. "dependencies": {
  17. "@babel/core": "^7.6.0",
  18. "react": "^16.9.0",
  19. "react-dom": "^16.9.0",
  20. "react-router": "^5.0.1",
  21. "react-router-dom": "^5.0.1",
  22. "react-static": "^7.2.2",
  23. "react-static-plugin-css-modules": "^7.2.2",
  24. "react-static-plugin-react-router": "^7.2.2",
  25. "react-static-plugin-sitemap": "^7.2.2",
  26. "webpack": "^4.39.3"
  27. },
  28. "devDependencies": {
  29. "babel-eslint": "^10.0.2",
  30. "eslint": "^6.1.0",
  31. "eslint-config-react-app": "^5.0.1",
  32. "eslint-config-react-tools": "^1.1.7",
  33. "eslint-plugin-flowtype": "^4.2.0",
  34. "eslint-plugin-import": "^2.18.2",
  35. "eslint-plugin-jsx-a11y": "^6.2.3",
  36. "eslint-plugin-react": "^7.14.3",
  37. "gh-pages": "^2.1.1",
  38. "prettier": "^1.18.2",
  39. "serve": "^11.1.0"
  40. }
  41. }