-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
115 lines (115 loc) · 3.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
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
110
111
112
113
114
115
{
"name": "react-query-course",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"preview": "vite preview",
"backend": "json-server --watch json-server/db.json --routes json-server/routes.json --delay 5000",
"start": "concurrently \"pnpm run backend\" \"pnpm 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",
"eslint": "eslint src/",
"checkTs": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.9.0",
"@tanstack/react-query": "^5.56.2",
"@tanstack/react-query-devtools": "^5.56.2",
"@tanstack/react-router": "^1.57.13",
"@tanstack/react-table": "^8.20.5",
"@tanstack/router-devtools": "^1.57.13",
"@tanstack/router-vite-plugin": "^1.57.13",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"immer": "^10.1.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-feather": "^2.0.10",
"react-hook-form": "^7.53.0",
"react-router": "^6.26.2",
"react-router-dom": "^6.26.2",
"react-table": "^7.8.0",
"tailwind-merge": "^2.5.2",
"typestyle": "^2.4.0",
"zustand": "4.5.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-syntax-flow": "^7.24.7",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.10.0",
"@faker-js/faker": "9.0.0",
"@playwright/test": "^1.47.0",
"@rollup/plugin-eslint": "^9.0.5",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/common-tags": "^1.8.4",
"@types/jest": "^29.5.13",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@types/react-table": "^7.7.20",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/coverage-istanbul": "^2.1.0",
"@vitest/coverage-v8": "^2.1.0",
"@vitest/ui": "^2.1.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"cross-fetch": "^4.0.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-autofix": "^2.2.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.36.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jsdom": "^25.0.0",
"json-server": "^0.17.4",
"lint-staged": "^15.2.10",
"million": "^3.1.11",
"msw": "^2.4.5",
"postcss": "^8.4.45",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.11",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"vite": "^5.4.5",
"vite-plugin-eslint": "^1.8.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.0",
"zod": "^3.23.8"
},
"alias": {
"process": false
}
}