-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.4 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "react-http-query",
"version": "2.3.1",
"author": {
"name": "Olusanya Timothy",
"email": "seunxplicit@gmail.com"
},
"keywords": [
"fetch",
"query",
"http",
"request",
"react"
],
"repository": {
"url": "https://github.com/seunexplicit/react-http-query.git",
"type": "git"
},
"scripts": {
"rollup": "rm -rf ./dist & rollup -c",
"format": "npx prettier --write lib/**",
"test": "jest --watch test/**/*.{js,ts,jsx,tsx}"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/axios": "^0.14.0",
"@types/eslint": "7.2.6",
"@types/jest": "^29.4.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"axios": "^1.4.0",
"axios-mock-adapter": "^1.21.5",
"babel-jest": "^29.5.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-fetch-mock": "^3.0.3",
"jest-mock-axios": "^4.6.2",
"prettier": "^2.5.1",
"rollup": "^3.20.2",
"typescript": "^4.9.5"
},
"peerDependencies": {
"react": "^16.8 || ^17.0 || ^18.0",
"react-dom": "^16.8 || ^17.0 || ^18.0"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.esm.js",
"files": [
"/dist"
],
"types": "dist/types/index.d.ts",
"type": "module"
}