-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
95 lines (95 loc) · 2.89 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
{
"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=./unit-report.xml",
"preview": "vite preview",
"lint": "CI=true eslint --ignore-pattern '*.d.ts' --ignore-pattern '*.test.*' --ext ts,tsx --max-warnings 0 src",
"prepare": "husky install",
"storybook": "storybook dev -p 6006",
"test-storybook": "pnpm exec test-storybook --watch",
"build-storybook": "storybook build"
},
"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": "^1.6.1",
"@storybook/addon-a11y": "^8.2.5",
"@storybook/addon-actions": "^8.2.5",
"@storybook/addon-essentials": "^8.2.5",
"@storybook/addon-interactions": "^8.2.5",
"@storybook/addon-links": "^8.2.5",
"@storybook/react": "^8.2.5",
"@storybook/react-vite": "^8.2.5",
"@storybook/test": "^8.2.5",
"@storybook/test-runner": "^0.19.1",
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@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",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.7.0",
"axe-playwright": "^1.2.3",
"concurrently": "8.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-storybook": "^0.6.15",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jsdom": "^21.1.2",
"msw": "^1.3.3",
"msw-storybook-addon": "^1.10.0",
"playwright": "^1.45.2",
"prettier": "2.8.6",
"pretty-quick": "^3.3.1",
"storybook": "^8.2.5",
"storybook-addon-remix-react-router": "^3.0.0",
"storybook-dark-mode": "^4.0.2",
"test-runner=0.19.1": "link:@storybook/test-runner=0.19.1",
"typescript": "^5.3.3",
"vite": "^5.3.4",
"vite-plugin-checker": "^0.6.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.6.0",
"wait-on": "^7.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"last 2 versions"
],
"development": [
"last 1 version"
]
},
"msw": {
"workerDirectory": "public"
},
"packageManager": "[email protected]"
}