package.json 750 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "custom",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "bootstrap": "3.3.7",
  7. "fbemitter": "^2.1.1",
  8. "react": "^16.2.0",
  9. "react-bootstrap": "^0.32.1",
  10. "react-dom": "^16.2.0",
  11. "react-modal": "^3.4.2",
  12. "react-native-elements": "^0.19.1",
  13. "react-router": "^4.2.0",
  14. "react-router-dom": "^4.2.2",
  15. "react-scripts": "1.1.1",
  16. "set-default-browser": "^1.0.1"
  17. },
  18. "scripts": {
  19. "start": "react-scripts start",
  20. "build": "react-scripts build",
  21. "test": "react-scripts test --env=jsdom",
  22. "eject": "react-scripts eject"
  23. },
  24. "proxy": {
  25. "/api": {
  26. "target": "http://localhost:5000/",
  27. "ws": true,
  28. "pathRewrite": {
  29. "^/api": "/"
  30. }
  31. }
  32. }
  33. }