-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.34 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
{
"name": "react-query-toolkit",
"version": "0.0.2",
"author": {
"name": "lifeisegg123",
"email": "[email protected]"
},
"main": "dist/index.umd.js",
"types": "types/index.d.ts",
"module": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/lifeisegg123/react-query-toolkit"
},
"bugs": {
"url": "https://github.com/lifeisegg123/react-query-toolkit/issues"
},
"license": "MIT",
"keywords": [
"react",
"query",
"react-query",
"toolkit",
"query-toolkit",
"react-query-toolkit"
],
"files": [
"dist/",
"types/"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"test:watch": "vitest --watch",
"cov": "vitest run --coverage",
"lint": "eslint ."
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-react": "^1.3.1",
"c8": "^7.11.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"jsdom": "^19.0.0",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-query": "^4.0.0-beta.3",
"typescript": "^4.5.4",
"vite": "^2.9.2",
"vitest": "^0.9.3"
},
"peerDependencies": {
"react-query": "^4"
}
}