-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.46 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
{
"name": "react-cached-fetch",
"version": "1.4.0",
"description": "React hook for fetching data with cache functionality",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Vitor Bertolucci",
"keywords": [
"React",
"Fetch",
"Cache"
],
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"prepare": "yarn run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"homepage": "https://github.com/vitorbertolucci/react-cached-fetch#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/vitorbertolucci/react-cached-fetch.git"
},
"bugs": {
"url": "https://github.com/vitorbertolucci/react-cached-fetch/issues"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/node": "^14.11.2",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "6.8.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-react": "7.21.5",
"eslint-plugin-react-hooks": "4",
"prettier": "^2.2.1",
"typescript": "^4.0.3"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}