-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.23 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.23 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
{
"name": "temp",
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 5173 --host",
"start": "vite --port 5173",
"build": "vite build && tsc",
"serve": "vite preview --port 5173 --host",
"test": "vitest run",
"lint": "eslint --fix",
"format": "prettier --write .",
"check": "prettier --write . && eslint --fix",
"sb": "storybook dev -p 6006",
"build:sb": "storybook build"
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-query": "^5.66.5",
"@tanstack/react-query-devtools": "^5.66.5",
"@tanstack/react-router": "^1.130.2",
"@tanstack/react-router-devtools": "^1.130.2",
"@tanstack/router-plugin": "^1.121.2",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"es-toolkit": "^1.39.10",
"idb": "^8.0.3",
"ky": "^1.8.2",
"markdown-to-jsx": "^7.7.13",
"overlay-kit": "^1.8.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.0.2",
"tailwindcss": "^4.0.6",
"tailwindcss-animate": "^1.0.7",
"vaul": "^1.1.2",
"zod": "^4.0.15"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.1.0",
"@faker-js/faker": "^9.9.0",
"@storybook/addon-a11y": "^9.1.1",
"@storybook/addon-docs": "^9.1.1",
"@storybook/addon-onboarding": "^9.1.1",
"@storybook/addon-vitest": "^9.1.1",
"@storybook/react-vite": "^9.1.1",
"@tanstack/eslint-config": "^0.1.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.2.0",
"@types/node": "^24.2.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "3.2.4",
"@vitest/coverage-v8": "3.2.4",
"eslint-plugin-storybook": "^9.1.1",
"jsdom": "^26.0.0",
"msw": "^2.10.5",
"playwright": "^1.54.2",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"storybook": "^9.1.1",
"typescript": "^5.7.2",
"vite": "^6.3.5",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.0.5",
"web-vitals": "^4.2.4"
},
"msw": {
"workerDirectory": [
"public"
]
}
}