-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.95 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.95 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
{
"name": "ittory-client",
"private": true,
"version": "0.0.0",
"type": "module",
"engines": {
"node": ">=20.5.0"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint --config ./eslint.config.js ./src && stylelint --config ./stylelint.config.js ./src",
"lint:fix": "eslint --config ./eslint.config.js --fix ./src && stylelint --config ./stylelint.config.js --fix ./src",
"typecheck": "tsc --project ./tsconfig.app.json --noEmit",
"typecheck:verbose": "tsc --project ./tsconfig.app.json --noEmit",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@hotjar/browser": "^1.0.9",
"@reduxjs/toolkit": "^2.3.0",
"@sentry/react": "^9.13.0",
"@sentry/vite-plugin": "^3.3.1",
"@stomp/stompjs": "^7.0.0",
"@tanstack/react-query": "^5.75.7",
"@tanstack/react-query-devtools": "^5.75.7",
"@types/react-responsive": "^8.0.8",
"axios": "^1.7.7",
"date-fns": "^3.6.0",
"jwt-decode": "^4.0.0",
"lottie-react": "^2.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-helmet-async": "^2.0.5",
"react-redux": "^9.1.2",
"react-responsive": "^10.0.0",
"react-router": "^7.6.2",
"react-swipeable": "^7.0.1",
"redux-persist": "^6.0.0",
"styled-components": "^6.1.12",
"swiper": "^11.1.14"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.22.0",
"@storybook/addon-docs": "^9.0.0",
"@storybook/addon-onboarding": "^9.0.0",
"@storybook/react-vite": "^9.0.0",
"@tanstack/eslint-plugin-query": "^5.74.7",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/node": "^20.14.11",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-helmet": "^6.1.11",
"@types/sockjs-client": "^1.5.4",
"@vitejs/plugin-react": "^4.3.1",
"code-inspector-plugin": "^0.20.12",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^9.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^15.8.0",
"lefthook": "^1.11.6",
"msw": "^2.9.0",
"msw-storybook-addon": "^2.0.4",
"postcss-styled-syntax": "^0.7.1",
"prettier": "^3.3.3",
"sass": "^1.80.6",
"storybook": "^9.0.0",
"storybook-addon-remix-react-router": "^5.0.0",
"stylelint": "^16.18.0",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^38.0.0",
"typescript-eslint": "^8.26.1",
"vite": "^6.2.2",
"vite-plugin-environment": "^1.1.3",
"vite-plugin-mkcert": "^1.17.8",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"msw": {
"workerDirectory": [
"public"
]
}
}