| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "name": "gmus",
- "version": "0.1.0",
- "private": false,
- "scripts": {
- "start": "react-scripts start",
- "build": "react-scripts build",
- "lint": "eslint src",
- "test": "react-scripts test",
- "eject": "react-scripts eject"
- },
- "repository": {
- "type": "git",
- "url": "git+https://github.com/felamaslen/go-music-player.git"
- },
- "author": "Fela Maslen",
- "license": "MIT",
- "bugs": {
- "url": "https://github.com/felamaslen/go-music-player/issues"
- },
- "husky": {
- "hooks": {
- "pre-commit": "lint-staged"
- }
- },
- "lint-staged": {
- "*.js": [
- "eslint --fix"
- ],
- "*.ts": [
- "eslint --fix"
- ],
- "*.tsx": [
- "eslint --fix"
- ]
- },
- "eslintConfig": {
- "extends": [
- "react-app",
- "react-app/jest"
- ]
- },
- "browserslist": {
- "production": [
- ">0.2%",
- "not dead",
- "not op_mini all"
- ],
- "development": [
- "last 1 chrome version",
- "last 1 firefox version",
- "last 1 safari version"
- ]
- },
- "dependencies": {
- "@react-hook/debounce": "^3.0.0",
- "@react-hook/throttle": "^2.2.0",
- "@testing-library/jest-dom": "^5.11.4",
- "@testing-library/react": "^11.1.0",
- "@testing-library/user-event": "^12.1.10",
- "@types/jest": "^26.0.15",
- "@types/lodash": "^4.14.165",
- "@types/nock": "^11.1.0",
- "@types/node": "^12.0.0",
- "@types/pluralize": "^0.0.29",
- "@types/react": "^16.9.53",
- "@types/react-dom": "^16.9.8",
- "@types/react-virtualized-auto-sizer": "^1.0.0",
- "@types/react-window": "^1.8.2",
- "@types/styled-components": "^5.1.5",
- "axios": "^0.21.0",
- "eslint-config-airbnb-base": "^14.2.1",
- "eslint-config-prettier": "^7.0.0",
- "husky": "^4.3.6",
- "jest-websocket-mock": "^2.2.0",
- "lint-staged": "^10.5.3",
- "lodash": "^4.17.20",
- "mock-socket": "^9.0.3",
- "nanoid": "^3.1.20",
- "nock": "^13.0.5",
- "pluralize": "^8.0.0",
- "polished": "^4.0.5",
- "prettier": "^2.2.1",
- "react": "^17.0.1",
- "react-dom": "^17.0.1",
- "react-scripts": "4.0.1",
- "react-spinners": "^0.9.0",
- "react-storage-hooks": "^4.0.1",
- "react-virtualized-auto-sizer": "^1.0.2",
- "react-window": "^1.8.6",
- "reinspect": "^1.1.0",
- "reselect": "^4.0.0",
- "styled-components": "^5.2.1",
- "styled-reset": "^4.3.3",
- "typescript": "^4.0.3",
- "use-onclickoutside": "^0.3.1",
- "web-vitals": "^0.2.4"
- }
- }
|