-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.2 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
{
"name": "bibicards",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.11.0",
"@mui/material": "^5.11.1",
"@reduxjs/toolkit": "^1.9.5",
"@testing-library/user-event": "^7.1.2",
"@types/node": "^18.14.6",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.1.1",
"formik": "2.2.9",
"react": "^18.2",
"react-dom": "^18.2",
"react-redux": "8.0.5",
"react-router-dom": "6.18.0",
"redux": "4.2.0",
"redux-devtools-extension": "2.13.8",
"redux-logger": "3.0.6",
"redux-thunk": "2.4.2",
"typescript": "^4.9.5",
"uuid": "8.3.2",
"vite": "4.5.0",
"vite-tsconfig-paths": "4.2.1",
"yup": "1.0.2"
},
"scripts": {
"start": "vite",
"test": "jest",
"build": "tsc && vite build",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"check:ts": "tsc --noEmit"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:storybook/recommended"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"devDependencies": {
"@storybook/addon-actions": "^7.3.2",
"@storybook/addon-essentials": "^7.3.2",
"@storybook/addon-interactions": "^7.3.2",
"@storybook/addon-links": "^7.3.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.3",
"@storybook/node-logger": "^7.3.2",
"@storybook/react": "^7.3.2",
"@storybook/react-vite": "^7.5.3",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "6.1.4",
"@testing-library/react": "14.1.0",
"@types/jest": "^29.5.8",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint-plugin-storybook": "^0.6.15",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.1.0",
"prop-types": "^15.8.1",
"storybook": "^7.5.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1"
}
}