package.json 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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/nock": "^11.1.0",
  63. "@types/node": "^12.0.0",
  64. "@types/pluralize": "^0.0.29",
  65. "@types/react": "^16.9.53",
  66. "@types/react-dom": "^16.9.8",
  67. "@types/react-virtualized-auto-sizer": "^1.0.0",
  68. "@types/react-window": "^1.8.2",
  69. "@types/styled-components": "^5.1.5",
  70. "axios": "^0.21.0",
  71. "eslint-config-airbnb-base": "^14.2.1",
  72. "eslint-config-prettier": "^7.0.0",
  73. "husky": "^4.3.6",
  74. "jest-websocket-mock": "^2.2.0",
  75. "lint-staged": "^10.5.3",
  76. "mock-socket": "^9.0.3",
  77. "nanoid": "^3.1.20",
  78. "nock": "^13.0.5",
  79. "pluralize": "^8.0.0",
  80. "polished": "^4.0.5",
  81. "prettier": "^2.2.1",
  82. "react": "^17.0.1",
  83. "react-dom": "^17.0.1",
  84. "react-scripts": "4.0.1",
  85. "react-spinners": "^0.9.0",
  86. "react-storage-hooks": "^4.0.1",
  87. "react-virtualized-auto-sizer": "^1.0.2",
  88. "react-window": "^1.8.6",
  89. "reinspect": "^1.1.0",
  90. "reselect": "^4.0.0",
  91. "styled-components": "^5.2.1",
  92. "styled-reset": "^4.3.3",
  93. "typescript": "^4.0.3",
  94. "use-onclickoutside": "^0.3.1",
  95. "web-vitals": "^0.2.4"
  96. }
  97. }