-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.82 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.82 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
{
"name": "react-practice",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test:unit": "vitest run src/lib",
"test:integration": "vitest run src/components",
"test:e2e": "playwright test e2e",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"@types/react-redux": "^7.1.34",
"clsx": "^2.1.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
"sass": "^1.89.0",
"styled-components": "^6.1.18"
},
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.27.1",
"@babel/plugin-syntax-decorators": "^7.27.1",
"@chromatic-com/storybook": "^4.0.0",
"@eslint/js": "^9.25.0",
"@playwright/test": "^1.53.0",
"@storybook/addon-a11y": "^9.0.10",
"@storybook/addon-docs": "^9.0.10",
"@storybook/addon-onboarding": "^9.0.10",
"@storybook/addon-vitest": "^9.0.10",
"@storybook/react-vite": "^9.0.10",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/node": "^24.0.3",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.4.1",
"@vitest/browser": "^3.2.3",
"@vitest/coverage-v8": "^3.2.3",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^9.0.10",
"global-jsdom": "^26.0.0",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"playwright": "^1.53.0",
"storybook": "^9.0.10",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vitest": "^3.2.3"
}
}