-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.49 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.49 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "houme-client",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"lint:staged": "lint-staged",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build --stats-json",
"test": "vitest run --project unit",
"test:watch": "vitest --project unit",
"test:coverage": "vitest run --project unit --coverage"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix --cache",
"prettier --write"
],
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@sentry/react": "^10.34.0",
"@tanstack/react-query": "^5.81.5",
"@tanstack/react-query-devtools": "^5.81.5",
"@use-funnel/browser": "^0.0.15",
"@use-funnel/react-router": "^0.0.5",
"@vanilla-extract/recipes": "^0.5.7",
"axios": "^1.10.0",
"clsx": "^2.1.1",
"firebase": "^12.3.0",
"framer-motion": "^12.23.0",
"lint-staged": "^16.1.2",
"lottie-react": "^2.4.1",
"onnxruntime-web": "^1.23.2",
"overlay-kit": "^1.8.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-error-boundary": "^6.1.0",
"react-helmet-async": "^2.0.5",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.6.3",
"react-toastify": "^11.0.5",
"remark-gfm": "^4.0.1",
"swiper": "^12.0.2",
"vaul": "^1.1.2",
"zustand": "^5.0.6"
},
"devDependencies": {
"@antebudimir/eslint-plugin-vanilla-extract": "^1.16.0",
"@chromatic-com/storybook": "^5.0.0",
"@eslint/js": "^9.29.0",
"@storybook/addon-a11y": "^10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-vitest": "^10.1.11",
"@storybook/react-vite": "^10.1.11",
"@svgr/plugin-svgo": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.81.2",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^24.0.7",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.1",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"@vanilla-extract/css": "^1.17.4",
"@vanilla-extract/recipes": "^0.5.7",
"@vanilla-extract/vite-plugin": "^5.1.0",
"@vitejs/plugin-react": "^4.5.2",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-storybook": "^10.1.11",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"msw": "^2.12.10",
"msw-storybook-addon": "^2.0.6",
"playwright": "^1.53.1",
"prettier": "3.6.2",
"storybook": "^10.1.11",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1",
"vite": "^7.0.0",
"vite-plugin-svgr": "^4.3.0",
"vitest": "^3.2.4"
},
"engines": {
"node": "22.x"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd"
}