-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.57 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@ventlio/tanstack-query",
"version": "0.6.7",
"license": "MIT",
"main": "dist/index.js",
"contributors": [
{
"email": "stancoproof@gmail.com",
"name": "stancobridge",
"url": "https://github.com/stancobridge"
}
],
"repository": {
"type": "git",
"url": "https://github.com/ventlio-tech/tanstack-query.git"
},
"types": "dist/index.d.ts",
"author": {
"email": "ventliodevs@gmail.com",
"name": "Ventlio",
"url": "https://ventlio.com"
},
"scripts": {
"build": "rimraf dist && rollup --config rollup.config.ts --configPlugin rollup-plugin-typescript2",
"build:watch": "yarn build -w",
"test": "jest"
},
"peerDependencies": {
"@tanstack/react-query": "^4.26.1",
"axios": "^1.3.4",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
"react-native": "*"
},
"peerDependenciesMeta": {
"react-native": {
"optional": true
}
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-typescript": "^11.0.0",
"@tanstack/react-query": "5.45.1",
"@testing-library/react": "^13.1",
"@testing-library/react-hooks": "^8.0.1",
"@types/axios": "^0.14.0",
"@types/jest": "^29.5.1",
"@types/lodash.set": "^4.3.7",
"@types/node": "*",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"axios": "^1.3.4",
"axios-mock-adapter": "^1.21.4",
"eslint": "^8.36.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"prettier": "^2.8.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^4.4.0",
"rollup": "^3.19.1",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.5.4"
},
"files": [
"dist/**/*",
"src"
],
"dependencies": {
"@tanstack/react-store": "^0.7.0",
"lodash.set": "^4.3.2",
"url-search-params-polyfill": "^8.2.5",
"zustand": "^5.0.4"
}
}