-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.08 KB
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
68
69
70
71
72
73
74
75
76
{
"name": "react-cache-rx",
"version": "1.0.0",
"description": "A library for managing data fetching and caching in React applications.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"test": "test",
"build:dev": "rollup -c --environment NODE_ENV:development",
"build": "rollup -c --environment NODE_ENV:production",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"prettier": "prettier --write .",
"fix-all": "npm run lint -- --fix && git add -A . && npm run prettier",
"prepare": "husky install"
},
"author": "Kabir Hossain",
"repository": {
"type": "git",
"url": "https://github.com/kobir1989/react-cache-rx"
},
"keywords": [
"React",
"data-fetching",
"caching",
"hooks",
"useFetch",
"useMutation",
"state-management",
"API",
"axios",
"fetch",
"context",
"performance",
"error-handling",
"async",
"custom-hooks"
],
"license": "MIT",
"dependencies": {
"@rollup/plugin-json": "^6.1.0",
"axios": "^1.7.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.3",
"@babel/preset-react": "^7.24.7",
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"husky": "^8.0.0",
"prettier": "3.3.3",
"rollup": "^4.9.1",
"ts-jest": "^29.1.1",
"typescript": "^5.3.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}