package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "my-first-app",
  3. "version": "0.1.0",
  4. "private": true,
  5. "proxy": "http://localhost:5000",
  6. "dependencies": {
  7. "@material-ui/core": "^4.12.3",
  8. "@material-ui/icons": "^4.11.2",
  9. "@testing-library/jest-dom": "^5.14.1",
  10. "@testing-library/react": "^11.2.7",
  11. "@testing-library/user-event": "^12.8.3",
  12. "axios": "^0.21.4",
  13. "classnames": "^2.3.1",
  14. "jwt-decode": "^3.1.2",
  15. "moment": "^2.29.1",
  16. "react": "^17.0.2",
  17. "react-dom": "^17.0.2",
  18. "react-file-base64": "^1.0.3",
  19. "react-google-login": "^5.2.2",
  20. "react-redux": "^7.2.4",
  21. "react-router-dom": "^5.2.0",
  22. "react-scripts": "4.0.3",
  23. "redux": "^4.1.1",
  24. "redux-form": "^8.3.7",
  25. "redux-thunk": "^2.3.0",
  26. "reselect": "^4.0.0",
  27. "web-vitals": "^1.1.2"
  28. },
  29. "scripts": {
  30. "start": "react-scripts start",
  31. "build": "react-scripts build",
  32. "test": "react-scripts test",
  33. "eject": "react-scripts eject",
  34. "predeploy": "npm run build",
  35. "deploy": "gh-pages -d build"
  36. },
  37. "eslintConfig": {
  38. "extends": [
  39. "react-app",
  40. "react-app/jest"
  41. ]
  42. },
  43. "browserslist": {
  44. "production": [
  45. ">0.2%",
  46. "not dead",
  47. "not op_mini all"
  48. ],
  49. "development": [
  50. "last 1 chrome version",
  51. "last 1 firefox version",
  52. "last 1 safari version"
  53. ]
  54. },
  55. "devDependencies": {
  56. "gh-pages": "^3.2.3",
  57. "react-test-renderer": "^17.0.2"
  58. },
  59. "description": "This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).",
  60. "main": "index.js",
  61. "keywords": [],
  62. "author": "",
  63. "license": "ISC"
  64. }