package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "gmus",
  3. "version": "0.1.0",
  4. "private": false,
  5. "scripts": {
  6. "start": "react-scripts start",
  7. "build": "react-scripts build",
  8. "lint": "eslint src",
  9. "test": "react-scripts test",
  10. "eject": "react-scripts eject"
  11. },
  12. "repository": {
  13. "type": "git",
  14. "url": "git+https://github.com/felamaslen/go-music-player.git"
  15. },
  16. "author": "Fela Maslen",
  17. "license": "MIT",
  18. "bugs": {
  19. "url": "https://github.com/felamaslen/go-music-player/issues"
  20. },
  21. "husky": {
  22. "hooks": {
  23. "pre-commit": "lint-staged"
  24. }
  25. },
  26. "lint-staged": {
  27. "*.js": [
  28. "eslint --fix"
  29. ],
  30. "*.ts": [
  31. "eslint --fix"
  32. ],
  33. "*.tsx": [
  34. "eslint --fix"
  35. ]
  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. "dependencies": {
  56. "@react-hook/debounce": "^3.0.0",
  57. "@react-hook/throttle": "^2.2.0",
  58. "@testing-library/jest-dom": "^5.11.4",
  59. "@testing-library/react": "^11.1.0",
  60. "@testing-library/user-event": "^12.1.10",
  61. "@types/jest": "^26.0.15",
  62. "@types/lodash": "^4.14.165",
  63. "@types/nock": "^11.1.0",
  64. "@types/node": "^12.0.0",
  65. "@types/pluralize": "^0.0.29",
  66. "@types/react": "^16.9.53",
  67. "@types/react-dom": "^16.9.8",
  68. "@types/react-virtualized-auto-sizer": "^1.0.0",
  69. "@types/react-window": "^1.8.2",
  70. "@types/styled-components": "^5.1.5",
  71. "axios": "^0.21.0",
  72. "eslint-config-airbnb-base": "^14.2.1",
  73. "eslint-config-prettier": "^7.0.0",
  74. "husky": "^4.3.6",
  75. "jest-websocket-mock": "^2.2.0",
  76. "lint-staged": "^10.5.3",
  77. "lodash": "^4.17.20",
  78. "mock-socket": "^9.0.3",
  79. "nanoid": "^3.1.20",
  80. "nock": "^13.0.5",
  81. "pluralize": "^8.0.0",
  82. "polished": "^4.0.5",
  83. "prettier": "^2.2.1",
  84. "react": "^17.0.1",
  85. "react-dom": "^17.0.1",
  86. "react-scripts": "4.0.1",
  87. "react-spinners": "^0.9.0",
  88. "react-storage-hooks": "^4.0.1",
  89. "react-virtualized-auto-sizer": "^1.0.2",
  90. "react-window": "^1.8.6",
  91. "reinspect": "^1.1.0",
  92. "reselect": "^4.0.0",
  93. "styled-components": "^5.2.1",
  94. "styled-reset": "^4.3.3",
  95. "typescript": "^4.0.3",
  96. "use-onclickoutside": "^0.3.1",
  97. "web-vitals": "^0.2.4"
  98. }
  99. }