-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.72 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
{
"name": "query",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"predev": "git rev-parse --short HEAD > public/version.txt",
"dev": "vite",
"prebuild": "git rev-parse --short HEAD > public/version.txt",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"update": "npx ncu -i"
},
"dependencies": {
"@apollo/client": "3.10.4",
"@emotion/react": "11.11.4",
"@faker-js/faker": "8.4.1",
"@mswjs/data": "0.16.1",
"@reduxjs/toolkit": "2.2.5",
"@tanstack/react-query": "5.40.0",
"async-mutex": "0.5.0",
"clsx": "2.1.1",
"dequal": "2.0.3",
"graphql": "16.8.1",
"jose": "5.3.0",
"msw": "2.3.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-router-dom": "6.23.1",
"swr": "2.2.5",
"urql": "4.1.0",
"use-sync-external-store": "1.2.2",
"zod": "3.23.8"
},
"devDependencies": {
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/use-sync-external-store": "0.0.6",
"@typescript-eslint/eslint-plugin": "6.2.0",
"@typescript-eslint/parser": "6.2.0",
"@vitejs/plugin-react": "4.3.0",
"eslint": "8.46.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react": "7.34.2",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"jsdom": "24.1.0",
"npm-check-updates": "16.14.20",
"prettier": "3.2.5",
"typescript": "5.4.5",
"typescript-plugin-css-modules": "5.1.0",
"vite": "5.2.12",
"vite-plugin-eslint": "1.8.1",
"vite-tsconfig-paths": "4.3.2",
"vitest": "1.6.0"
},
"msw": {
"workerDirectory": "public"
}
}