-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "react-axios-localstorage",
"version": "1.0.6",
"description": "React + Axios hook for client browser localstorage caching.",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint src",
"test": "jest",
"prepare": "husky install",
"prepublishOnly": "npm run build && npm version patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cdhawke/react-axios-localstorage.git"
},
"keywords": [
"react-axios-localstorage",
"react",
"localstorage",
"cache",
"hook",
"axios"
],
"author": "Christopher Hawke (https://github.com/cdhawke)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdhawke/react-axios-localstorage/issues"
},
"homepage": "https://github.com/cdhawke/react-axios-localstorage#react-axios-localstorage",
"peerDependencies": {
"axios": ">= 0.22.0",
"react": "16.8.0 || >= 17.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@testing-library/react": "^12.1.2",
"@testing-library/react-hooks": "^7.0.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.12",
"@types/react": "^17.0.37",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"axios": "^0.24.0",
"babel-jest": "^27.4.4",
"eslint": "^8.4.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"prettier": "^2.5.1",
"react": "^17.0.2",
"rollup": "^2.61.1",
"rollup-plugin-dts": "^4.0.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.1",
"typescript": "^4.5.3"
}
}