package.json 979 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "react-static-example-basic",
  3. "private": true,
  4. "scripts": {
  5. "start": "react-static start",
  6. "stage": "react-static build --staging",
  7. "build": "react-static build",
  8. "analyze": "react-static build --analyze",
  9. "serve": "serve dist -p 3000"
  10. },
  11. "dependencies": {
  12. "@reach/router": "^1.2.1",
  13. "axios": "^0.19.0",
  14. "react": "^16.9.0",
  15. "react-dom": "^16.9.0",
  16. "react-static": "^7.2.0",
  17. "react-static-plugin-reach-router": "^7.2.0",
  18. "react-static-plugin-sitemap": "^7.2.0",
  19. "react-static-plugin-source-filesystem": "^7.2.0"
  20. },
  21. "devDependencies": {
  22. "babel-eslint": "^10.0.2",
  23. "eslint": "^6.1.0",
  24. "eslint-config-react-app": "^5.0.1",
  25. "eslint-config-react-tools": "^1.1.7",
  26. "eslint-plugin-flowtype": "^4.2.0",
  27. "eslint-plugin-import": "^2.18.2",
  28. "eslint-plugin-jsx-a11y": "^6.2.3",
  29. "eslint-plugin-react": "^7.14.3",
  30. "eslint-plugin-react-hooks": "^4.0.2",
  31. "serve": "^11.1.0"
  32. }
  33. }