package.json 782 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "jre",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@material-ui/core": "^4.5.0",
  7. "@material-ui/icons": "^4.4.3",
  8. "express": "^4.17.1",
  9. "react": "^16.10.2",
  10. "react-dom": "^16.10.2",
  11. "react-google-font-loader": "^1.1.0",
  12. "react-scripts": "3.2.0"
  13. },
  14. "scripts": {
  15. "start": "react-scripts start",
  16. "build": "react-scripts build",
  17. "test": "react-scripts test",
  18. "eject": "react-scripts eject",
  19. "serve": "node express.js"
  20. },
  21. "eslintConfig": {
  22. "extends": "react-app"
  23. },
  24. "browserslist": {
  25. "production": [
  26. ">0.2%",
  27. "not dead",
  28. "not op_mini all"
  29. ],
  30. "development": [
  31. "last 1 chrome version",
  32. "last 1 firefox version",
  33. "last 1 safari version"
  34. ]
  35. }
  36. }