package.json 890 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "teamspeak-status",
  3. "version": "0.1.0",
  4. "private": true,
  5. "homepage": "https://hiram.services/teamspeak/",
  6. "dependencies": {
  7. "@testing-library/jest-dom": "^4.2.4",
  8. "@testing-library/react": "^9.3.2",
  9. "@testing-library/user-event": "^7.1.2",
  10. "react": "^16.13.1",
  11. "react-dom": "^16.13.1",
  12. "react-scripts": "3.4.1"
  13. },
  14. "scripts": {
  15. "start": "react-scripts start",
  16. "build": "react-scripts build",
  17. "test": "react-scripts test",
  18. "eject": "react-scripts eject",
  19. "deploy": "scp -r build hiram:/opt/ts3/status/build-$(date +'%Y-%m-%dT%H:%M:%S')"
  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. }