-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 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
{
"name": "react-query-handler",
"version": "1.0.3",
"description": "A React component to handle query states with TypeScript support",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/yuskraft/react-query-handler",
"repository": {
"type": "git",
"url": "https://github.com/yuskraft/react-query-handler.git"
},
"bugs": {
"url": "https://github.com/yuskraft/react-query-handler/issues"
},
"scripts": {
"build": "rollup -c",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit",
"prepare": "npm run build"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^8.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@types/jest": "^29.5.10",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/testing-library__jest-dom": "^5.14.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^2.79.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^5.0.0"
},
"keywords": [
"react",
"typescript",
"query",
"loading-state"
],
"author": "Nurlan Yusifli"
}