-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.31 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.31 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
{
"name": "frontend",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0",
"npm": "forbidden",
"yarn": "forbidden"
},
"scripts": {
"preinstall": "if [ ! -f \"$(which pnpm)\" ] || [ \"$npm_execpath\" != *pnpm* ]; then echo 'Please use pnpm only!'; exit 1; fi",
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"lint:biome": "biome lint .",
"format": "biome format --write .",
"check": "biome check --write .",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"chromatic": "chromatic --project-token=$CHROMATIC_PROJECT_TOKEN"
},
"packageManager": "pnpm@10.15.0",
"dependencies": {
"@radix-ui/react-slot": "^1.2.2",
"@tailwindcss/vite": "^4.1.5",
"@tanstack/react-query": "^5.85.9",
"@tanstack/react-query-devtools": "^5.85.9",
"axios": "^1.11.0",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^12.23.12",
"lucide-react": "^0.508.0",
"react": "^19.2.1",
"react-dom": "^19.2.1",
"react-router-dom": "^7.8.2",
"tailwind-merge": "^3.2.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "^2.2.0",
"@chromatic-com/storybook": "^4.1.1",
"@eslint/js": "^9.25.0",
"@storybook/addon-a11y": "^9.1.3",
"@storybook/addon-docs": "^9.1.3",
"@storybook/addon-vitest": "^9.1.3",
"@storybook/react-vite": "^9.1.3",
"@tanstack/eslint-plugin-query": "^5.83.1",
"@types/node": "^22.15.16",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.21",
"chromatic": "^13.1.4",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^9.1.3",
"globals": "^16.0.0",
"playwright": "^1.55.0",
"postcss": "^8.5.3",
"storybook": "^9.1.3",
"tailwindcss": "^4.1.5",
"tw-animate-css": "^1.2.9",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-plugin-svgr": "^4.5.0",
"vitest": "^3.2.4"
}
}