-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.2 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
{
"name": "vitr",
"private": true,
"sideEffects": false,
"type": "module",
"packageManager": "[email protected]",
"author": "Muhammad Yusuf <[email protected]>",
"scripts": {
"setup": "pnpm install && lefthook install",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"lint": "biome check --write .",
"typecheck": "tsc --pretty",
"test": "vitest",
"test:ui": "vitest --ui",
"test:ci": "vitest run --coverage --bail=1",
"test:report": "open coverage/index.html",
"test:e2e": "playwright test",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@sentry/react": "^8.29.0",
"@sentry/replay": "^7.116.0",
"@tanstack/react-query": "^5.55.4",
"@tanstack/react-router": "^1.57.6",
"@tanstack/router-zod-adapter": "^1.57.6",
"@xstate/store": "^2.3.0",
"clsx": "^2.1.1",
"ky": "^1.7.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"recharts": "^2.12.7",
"sonner": "^1.5.0",
"string-ts": "^2.2.0",
"tailwind-merge": "^2.5.2",
"tailwind-variants": "^0.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "^1.8",
"@iconify-json/ph": "^1.2",
"@playwright/test": "^1.47.0",
"@sentry/vite-plugin": "^2.22",
"@svgr/core": "^8.1",
"@svgr/plugin-jsx": "^8.1",
"@tanstack/react-query-devtools": "^5.55.4",
"@tanstack/router-devtools": "^1.57.6",
"@tanstack/router-plugin": "^1.57.6",
"@testing-library/jest-dom": "^6.5",
"@testing-library/react": "^16.0",
"@testing-library/user-event": "^14.5",
"@total-typescript/ts-reset": "^0.6",
"@types/node": "^22.5",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
"@unocss/reset": "0.62.4",
"@vitejs/plugin-react-swc": "^3.7",
"@vitest/coverage-istanbul": "^2.0",
"@vitest/ui": "^2.0",
"autoprefixer": "^10.4.20",
"happy-dom": "^15.7",
"lefthook": "^1.7",
"msw": "^2.4",
"typescript": "^5.5",
"unocss": "0.62.4",
"unocss-preset-useful": "0.5.2",
"vite": "^5.4",
"vite-tsconfig-paths": "^5.0",
"vitest": "^2.0"
},
"engines": {
"node": ">=20.0.0"
}
}