-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.5 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.5 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "react-query-course",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"backend": "json-server json-server/db.json --enable-api-prefix --delay=3000",
"start": "concurrently \"npm run backend\" \"npm run dev\"",
"build": "vite build",
"test.unit": "vitest",
"test.unit.watch": "vitest watch",
"test.unit.ui": "vitest --ui --api 1337",
"test.unit.coverage": "vitest run --coverage",
"test.e2e": "playwright test",
"test.e2e.debug": "playwright test --debug",
"test.e2e.codegen": "playwright codegen http://localhost:5173",
"test.e2e.html": "playwright show-report",
"lint": "oxlint --quiet",
"checkTs": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^5.1.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toast": "^1.2.14",
"@tanstack/react-query": "^5.81.2",
"@tanstack/react-query-devtools": "^5.81.2",
"@tanstack/react-router": "^1.121.34",
"@tanstack/react-table": "^8.21.3",
"@tanstack/router-devtools": "^1.121.34",
"@tanstack/router-vite-plugin": "^1.121.34",
"axios": "^1.10.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"lucide-react": "^0.523.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^6.0.0",
"react-feather": "^2.0.10",
"react-hook-form": "^7.55.0",
"react-router": "^6.30.1",
"react-router-dom": "^6.30.0",
"react-table": "^7.8.0",
"tailwind-merge": "^3.3.1",
"typestyle": "^2.4.0",
"zustand": "5.0.5"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/plugin-syntax-flow": "^7.27.1",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@faker-js/faker": "9.8.0",
"@playwright/test": "^1.53.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/common-tags": "^1.8.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.0.4",
"@types/react": "^18.3.23",
"@types/react-dom": "^18.3.7",
"@types/react-table": "^7.7.20",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/coverage-istanbul": "^3.2.3",
"@vitest/coverage-v8": "^3.2.3",
"@vitest/ui": "^3.2.3",
"@webmasterdevlin/json-server": "^1.1.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.2",
"cross-fetch": "^4.1.0",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"million": "^3.1.11",
"msw": "^2.10.2",
"oxlint": "^1.3.0",
"postcss": "^8.5.6",
"prettier": "^3.6.1",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.3",
"uuid": "^11.1.0",
"vite": "npm:rolldown-vite@latest",
"vite-plugin-oxlint": "^1.3.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4",
"zod": "^3.25.67"
},
"alias": {
"process": false
}
}