-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.33 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "googoo",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"dev": "remix vite:dev --port 3000",
"dev:host": "remix vite:dev --port 3000 --host",
"start": "remix-serve ./build/server/index.js",
"build": "remix vite:build",
"check:lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"check:ts": "tsc --watch",
"test:watch": "vitest --watch",
"storybook:dev": "storybook dev -p 6006",
"storybook:build": "storybook build",
"generate:icon": "npx @svgr/cli --out-dir src/shared/ui/icons -- assets/icons",
"generate:api": "orval --config ./orval.config.cjs"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-portal": "^1.1.1",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@remix-run/node": "^2.9.2",
"@remix-run/react": "^2.9.2",
"@remix-run/serve": "^2.9.2",
"@tanstack/react-query": "^5.51.23",
"axios": "^1.7.2",
"cva": "npm:class-variance-authority@^0.7.0",
"dayjs": "^1.11.11",
"i18next": "^23.13.0",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-fs-backend": "^2.3.2",
"i18next-http-backend": "^2.5.2",
"isbot": "^4.1.0",
"react": "18.3.0-canary-2f8f77602-20240229",
"react-dom": "18.3.0-canary-2f8f77602-20240229",
"react-error-boundary": "^4.0.13",
"react-hot-toast": "^2.4.1",
"react-i18next": "^15.0.1",
"react-intersection-observer": "^9.13.0",
"react-modal-sheet": "^3.1.0",
"react-range-slider-input": "^3.0.7",
"react-slick": "^0.30.2",
"remix-i18next": "6.3.0",
"slick-carousel": "^1.8.1",
"zustand": "^4.5.2",
"zustand-persist": "^0.4.0"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@faker-js/faker": "^8.4.1",
"@remix-run/dev": "^2.9.2",
"@storybook/addon-essentials": "^8.1.5",
"@storybook/addon-interactions": "^8.1.5",
"@storybook/addon-links": "^8.1.5",
"@storybook/addon-onboarding": "^8.1.5",
"@storybook/blocks": "^8.1.5",
"@storybook/react": "^8.1.5",
"@storybook/react-vite": "^8.1.5",
"@storybook/test": "^8.1.5",
"@svgr/cli": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@svgr/plugin-prettier": "^8.1.0",
"@svgr/plugin-svgo": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.51.15",
"@testing-library/dom": "^10.1.0",
"@testing-library/react": "^16.0.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-slick": "^0.23.13",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.8.0",
"jsdom": "^24.1.0",
"msw": "^2.3.5",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.13.0",
"orval": "^6.31.0",
"prettier": "^3.3.1",
"storybook": "^8.1.5",
"typescript": "^5.1.6",
"vite": "^5.1.0",
"vite-plugin-svgr": "^4.2.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^1.6.0"
},
"overrides": {
"react": "18.3.0-canary-2f8f77602-20240229",
"react-dom": "18.3.0-canary-2f8f77602-20240229"
}
}