-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.6 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
{
"name": "@jtutor/use-fetch",
"version": "0.0.6",
"main": "lib/index.js",
"description": "A lightweight react hook that uses fetch API.",
"keywords": [
"react",
"react hook",
"react fetch",
"react fetch hook",
"fetch",
"fetch API",
"use fetch",
"rest",
"rest API"
],
"author": "Josaphat E. Tutor <jeshrave003@gmail.com> (https://jojotutor.netlify.com/)",
"repository": {
"type": "git",
"url": "https://github.com/jojo-tutor/use-fetch"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jojo-tutor/use-fetch/issues"
},
"dependencies": {
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"react-scripts": "3.4.0",
"typescript": "^3.8.3"
},
"devDependencies": {},
"scripts": {
"dev": "react-scripts start",
"build-lib": "tsc --p tsconfig-lib.json",
"build-app": "react-scripts build",
"build": "yarn build-lib && yarn build-app",
"test": "CI=true react-scripts test",
"eject": "react-scripts eject",
"prepare": "yarn build",
"deploy": "npm publish --access public"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}