axios-hooks/package.json
dependabot[bot] 2f3e3b12cb
chore(deps-dev): bump eslint-plugin-prettier from 5.4.0 to 5.5.1 (#1956)
Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 5.4.0 to 5.5.1.
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v5.4.0...v5.5.1)

---
updated-dependencies:
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-07-14 16:55:37 +00:00

88 lines
2.4 KiB
JSON

{
"name": "axios-hooks",
"version": "5.1.1",
"description": "axios-hooks",
"keywords": [
"axios",
"react",
"hooks"
],
"license": "MIT",
"author": "Simone Busoli <simone.busoli@gmail.com>",
"homepage": "https://github.com/simoneb/axios-hooks",
"repository": "simoneb/axios-hooks",
"bugs": "https://github.com/simoneb/axios-hooks/issues",
"main": "cjs/index.js",
"module": "es/index.js",
"types": "src/index.d.ts",
"files": [
"cjs/",
"es/",
"src/"
],
"scripts": {
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir cjs",
"build:es": "babel src --out-dir es",
"build": "run-p build:*",
"clean": "rimraf cjs es",
"format": "prettier --write \"{src,test}/**/*.{js?(x),md,ts?(x)}\"",
"lint": "eslint . --ext .js,.jsx",
"prepare": "npm run clean && npm run build && husky install",
"pretest": "shx cp ./test/index.test.jsx ./test/index.test.tsx && shx cp ./test/index.test.ssr.jsx ./test/index.test.ssr.tsx",
"test": "tsd && jest --no-cache"
},
"dependencies": {
"@babel/runtime": "7.27.6",
"dequal": "2.0.3",
"lru-cache": "^11.0.0"
},
"peerDependencies": {
"axios": ">=1.0.0",
"react": "^16.8.0-0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/cli": "7.28.0",
"@babel/core": "7.26.10",
"@babel/plugin-transform-runtime": "7.28.0",
"@babel/preset-env": "7.27.1",
"@babel/preset-react": "7.26.3",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@testing-library/react": "12.1.5",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "29.5.14",
"@types/node": "22.15.3",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"axios": "1.10.0",
"cross-env": "7.0.3",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.5",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-prettier": "5.5.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"husky": "^9.0.3",
"jest": "29.7.0",
"jest-environment-jsdom": "^30.0.4",
"lint-staged": "16.1.2",
"npm-run-all": "4.1.5",
"prettier": "3.6.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"rimraf": "6.0.1",
"shx": "0.4.0",
"ts-jest": "29.3.2",
"tsd": "^0.32.0",
"typescript": "5.8.3"
},
"lint-staged": {
"{src,test}/**/*.{js?(x),md}": [
"eslint --fix"
]
},
"tsd": {
"directory": "test-d"
}
}