-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
107 lines (107 loc) · 3.23 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
99
100
101
102
103
104
105
106
107
{
"name": "spa-vite-template",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"test": "vitest",
"test:ci": "vitest run --reporter verbose --reporter=junit --outputFile=./reports/unit-report.xml",
"test:coverage": "vitest run --coverage",
"preview": "vite preview",
"lint": "eslint . --ignore-pattern '*.d.ts' --report-unused-disable-directives --max-warnings 0",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"test-storybook": "pnpm exec test-storybook --watch",
"test-storybook:coverage": "test-storybook --coverage",
"build-storybook": "storybook build --test"
},
"dependencies": {
"@chakra-ui/icons": "2.1.1",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.13.0",
"@emotion/styled": "11.13.0",
"@fontsource/inter": "4.5.15",
"@tanstack/react-query": "4.36.1",
"framer-motion": "9.1.7",
"intl-messageformat": "10.5.14",
"ky": "0.33.3",
"lodash-es": "4.17.21",
"query-string": "8.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-error-boundary": "3.1.4",
"react-router-dom": "6.25.1",
"zustand": "4.5.4"
},
"devDependencies": {
"@chromatic-com/storybook": "3.2.5",
"@eslint/js": "9.24.0",
"@storybook/addon-a11y": "8.6.4",
"@storybook/addon-actions": "8.6.4",
"@storybook/addon-coverage": "1.0.5",
"@storybook/addon-essentials": "8.6.4",
"@storybook/addon-interactions": "8.6.4",
"@storybook/addon-links": "8.6.4",
"@storybook/react": "8.6.4",
"@storybook/react-vite": "8.6.4",
"@storybook/test": "8.6.4",
"@storybook/test-runner": "0.22.0",
"@testing-library/react": "16.0.0",
"@types/lodash-es": "4.17.12",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"@types/testing-library__jest-dom": "5.14.9",
"@vitejs/plugin-react-swc": "3.8.0",
"@vitest/coverage-v8": "3.0.8",
"axe-playwright": "1.2.3",
"concurrently": "8.2.0",
"eslint": "9.24.0",
"eslint-config-prettier": "10.1.2",
"eslint-import-resolver-typescript": "4.3.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"eslint-plugin-storybook": "0.12.0",
"eslint-plugin-vitest": "0.5.4",
"http-server": "14.1.1",
"husky": "8.0.3",
"jest": "29.7.0",
"jsdom": "21.1.2",
"msw": "2.7.3",
"msw-storybook-addon": "2.0.4",
"playwright": "1.45.2",
"prettier": "3.5.3",
"pretty-quick": "4.1.1",
"storybook": "8.6.4",
"storybook-addon-remix-react-router": "3.1.0",
"storybook-dark-mode": "4.0.2",
"typescript": "5.8.2",
"typescript-eslint": "8.30.1",
"vite": "6.2.1",
"vite-plugin-checker": "0.9.1",
"vite-tsconfig-paths": "5.1.3",
"vitest": "3.0.8",
"wait-on": "7.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"last 2 versions"
],
"development": [
"last 1 version"
]
},
"jest-junit": {
"outputFile": "./reports/storybook-report.xml"
},
"msw": {
"workerDirectory": "public"
},
"packageManager": "[email protected]"
}