-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.69 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
{
"name": "react-sample",
"private": true,
"version": "0.0.0",
"type": "module",
"packageManager": "pnpm@11.7.0",
"engines": {
"node": ">=24.13.0 <25.0.0",
"pnpm": ">=11.7.0"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "lefthook install",
"dev": "pnpm generate-routes && vite",
"build": "pnpm generate-routes && tsc -b && vite build",
"preview": "vite preview",
"generate-routes": "tsr generate",
"watch-routes": "tsr watch",
"typecheck": "tsc -b --pretty false",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write --cache",
"format:check": "prettier . --check --cache",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"validate": "pnpm typecheck && pnpm lint && pnpm format:check && pnpm test && pnpm build"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@radix-ui/react-dialog": "^1.1.18",
"@radix-ui/react-slot": "^1.3.0",
"@tanstack/react-query": "^5.101.2",
"@tanstack/react-router": "^1.170.17",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^1.23.0",
"msw": "^2.14.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.80.0",
"tailwind-merge": "^3.6.0",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.61.1",
"@storybook/addon-a11y": "10.4.6",
"@storybook/addon-docs": "10.4.6",
"@storybook/addon-themes": "10.4.6",
"@storybook/react-vite": "10.4.6",
"@tailwindcss/vite": "^4.3.2",
"@tanstack/router-cli": "^1.167.18",
"@tanstack/router-devtools": "^1.167.0",
"@tanstack/router-plugin": "^1.168.19",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.6.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"eslint-plugin-testing-library": "^7.16.2",
"globals": "^17.7.0",
"jsdom": "^29.1.1",
"lefthook": "^2.1.9",
"prettier": "^3.9.4",
"prettier-plugin-tailwindcss": "^0.8.0",
"storybook": "10.4.6",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.62.1",
"vite": "^8.1.3",
"vitest": "^4.1.9"
}
}