-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 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
{
"name": "redditclone",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "jest",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@reduxjs/toolkit": "^2.8.2",
"framer-motion": "^12.16.0",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"i18next-http-backend": "^3.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^15.5.2",
"react-redux": "^9.2.0",
"react-router-dom": "^7.6.1",
"react-transition-group": "^4.4.5",
"redux": "^5.0.1"
},
"devDependencies": {
"@chromatic-com/storybook": "^4.0.0-next.16",
"@eslint/js": "^9.25.0",
"@storybook/addon-docs": "^9.1.0-alpha.2",
"@storybook/addon-onboarding": "^9.1.0-alpha.2",
"@storybook/addon-vitest": "^9.1.0-alpha.2",
"@storybook/blocks": "^8.6.14",
"@storybook/builder-vite": "^9.1.0-alpha.2",
"@storybook/react": "^9.1.0-alpha.2",
"@storybook/react-vite": "^9.1.0-alpha.2",
"@storybook/test": "^8.6.14",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^22.15.21",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@types/react-transition-group": "^4.4.12",
"@vitejs/plugin-react-swc": "^3.9.0",
"@vitest/browser": "^3.1.4",
"@vitest/coverage-v8": "^3.1.4",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-storybook": "^9.1.0-alpha.2",
"globals": "^16.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^30.0.0-beta.3",
"playwright": "^1.52.0",
"sass-embedded": "^1.89.0",
"storybook": "^9.1.0-alpha.2",
"storybook-react-context": "^0.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vitest": "^3.1.4"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"overrides": {
"storybook": "$storybook"
}
}