package.json 949 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "urtc-demo-react",
  3. "version": "1.0.0",
  4. "description": "UCloud RTC react 版本的 demo",
  5. "dependencies": {
  6. "react": "^16.12.0",
  7. "react-dom": "^16.12.0",
  8. "unique-classnames": "^1.0.6"
  9. },
  10. "scripts": {
  11. "start": "react-app-rewired start",
  12. "build": "react-app-rewired build",
  13. "test": "react-app-rewired test",
  14. "eject": "react-app-rewired eject"
  15. },
  16. "eslintConfig": {
  17. "extends": "react-app"
  18. },
  19. "license": "MIT",
  20. "browserslist": {
  21. "production": [
  22. ">0.2%",
  23. "not dead",
  24. "not op_mini all"
  25. ],
  26. "development": [
  27. "last 1 chrome version",
  28. "last 1 firefox version",
  29. "last 1 safari version"
  30. ]
  31. },
  32. "devDependencies": {
  33. "@testing-library/jest-dom": "^4.2.4",
  34. "@testing-library/react": "^9.3.2",
  35. "@testing-library/user-event": "^7.1.2",
  36. "customize-cra": "^0.9.1",
  37. "react-app-rewired": "^2.1.5",
  38. "react-scripts": "^3.3.0"
  39. }
  40. }