-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
80 lines (80 loc) · 3.05 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
{
"name": "vite-react-template",
"private": true,
"version": "0.3.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"check": "biome check . --write",
"format": "biome format . --write",
"lint": "biome lint . --write",
"preview": "pnpm dlx serve dist -l 3000 -s -n -C",
"update-deps": "npm-check-updates --configFileName .ncurc.json",
"storybook": "VITE_CJS_IGNORE_WARNING=true storybook dev -p 6006 --no-open --disable-telemetry",
"build:storybook": "VITE_CJS_IGNORE_WARNING=true storybook build --disable-telemetry -o storybook-static",
"preview:storybook": "pnpm dlx serve storybook-static -l 6006 -n -C",
"cleanup:dev": "pnpm dlx rimraf dist storybook-static tests-results",
"pre-commit": "lefthook run pre-commit --force",
"prepare": "lefthook install || true",
"test:report": "pnpm dlx serve tests-results -l 8000 -s -n -C",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test": "vitest --run",
"typecheck": "tsc -b"
},
"dependencies": {
"gotrue-js": "^0.9.29",
"lucide-react": "^0.453.0",
"react": "^18.3.1",
"react-aria": "^3.35.1",
"react-aria-components": "^1.4.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-router-dom": "^6.27.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@storybook/addon-essentials": "^8.3.6",
"@storybook/addon-interactions": "^8.3.6",
"@storybook/addon-links": "^8.3.6",
"@storybook/blocks": "^8.3.6",
"@storybook/react": "^8.3.6",
"@storybook/react-vite": "^8.3.6",
"@storybook/test": "^8.3.6",
"@storybook/theming": "^8.3.6",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.7",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react": "^4.3.3",
"@vitest/coverage-istanbul": "^2.1.3",
"@vitest/ui": "^2.1.3",
"autoprefixer": "^10.4.20",
"clsx": "^2.1.1",
"happy-dom": "^15.7.4",
"jsdom": "^25.0.1",
"lefthook": "^1.7.22",
"npm-check-updates": "^17.1.4",
"postcss": "^8.4.47",
"rollup-plugin-visualizer": "^5.12.0",
"storybook": "^8.3.6",
"tailwind-merge": "^2.5.4",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwind-variants": "^0.2.1",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"tailwindcss-debug-screens": "^2.2.1",
"tailwindcss-react-aria-components": "^1.1.6",
"typescript": "5.6.3",
"vite": "^5.4.9",
"vite-plugin-inspect": "^0.8.7",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]"
}