-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.41 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.41 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": "moddo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "tsc -b && vite build",
"lint": "eslint src --ext .js,.jsx,.ts,.tsx",
"preview": "vite preview",
"svgr": "npx @svgr/cli -d src/shared/assets/svgs/icon --typescript --no-dimensions public/svgs",
"pwa": "pwa-assets-generator --preset minimal public/pwa/moddo.svg",
"storybook": "storybook dev -p 6006",
"build-storybook": "STORYBOOK=true storybook build",
"test": "vitest run"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.3.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hookform/resolvers": "^3.10.0",
"@react-spring/web": "^9.7.5",
"@tanstack/react-query": "^5.64.2",
"@tanstack/react-query-devtools": "^5.69.0",
"@use-funnel/react-router": "^0.0.2",
"axios": "^1.7.9",
"date-fns": "^3.6.0",
"file-saver": "^2.0.5",
"framer-motion": "^12.0.1",
"html-to-image": "^1.11.13",
"lottie-react": "^2.4.1",
"nanoid": "^5.0.9",
"qrcode.react": "^4.2.0",
"react": "^18.3.1",
"react-circular-progressbar": "^2.1.0",
"react-datepicker": "^7.6.0",
"react-dom": "^18.3.1",
"react-error-boundary": "^5.0.0",
"react-hook-form": "^7.54.2",
"react-icons": "^5.4.0",
"react-router": "^7.1.3",
"react-toastify": "^11.0.3",
"styled-components": "^6.1.14",
"styled-normalize": "^8.1.1",
"zod": "^3.24.1",
"zustand": "^5.0.3"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@feature-sliced/eslint-config": "^0.1.1",
"@hookform/devtools": "^4.3.3",
"@storybook/addon-essentials": "^8.5.0",
"@storybook/addon-interactions": "^8.5.0",
"@storybook/addon-onboarding": "^8.5.0",
"@storybook/addon-themes": "^8.5.2",
"@storybook/blocks": "^8.5.0",
"@storybook/react": "^8.6.12",
"@storybook/react-vite": "^8.5.0",
"@storybook/test": "^8.5.0",
"@tanstack/eslint-plugin-query": "^5.68.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^22.10.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"@vite-pwa/assets-generator": "^0.2.6",
"@vitejs/plugin-react": "^4.3.4",
"chromatic": "^11.25.2",
"eslint": "8.50.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-boundaries": "^5.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-refresh": "^0.4.16",
"eslint-plugin-storybook": "^0.11.2",
"globals": "^15.14.0",
"msw": "^2.7.0",
"msw-storybook-addon": "^2.0.6",
"prettier": "^3.4.2",
"storybook": "^8.6.12",
"storybook-addon-pseudo-states": "^4.0.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.21.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"msw": {
"workerDirectory": [
"public"
]
}
}