-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 923 Bytes
/
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
{
"name": "@tanstack/query-example-react-load-more-infinite-scroll",
"private": true,
"type": "module",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@tanstack/react-query": "^5.60.2",
"@tanstack/react-query-devtools": "^5.60.2",
"axios": "^1.7.7",
"buffer": "^6.0.3",
"next": "^14.2.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.13.0"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@types/node": "22.9.0",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"typescript": "5.3.3",
"vite-tsconfig-paths": "^5.1.2",
"vitest": "^2.1.5"
}
}