-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.34 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.34 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
{
"name": "cms_components",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test-storybook": "test-storybook",
"test-ct": "playwright test -c playwright-ct.config.ts",
"test": "playwright test"
},
"dependencies": {
"@ant-design/colors": "^7.1.0",
"@ant-design/cssinjs": "^1.21.0",
"@ant-design/icons": "^5.4.0",
"@emotion/css": "^11.13.0",
"@faker-js/faker": "^8.4.1",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.9.0",
"@lexical/react": "^0.17.1",
"@lexical/rich-text": "^0.17.1",
"@swc/plugin-emotion": "^4.0.0",
"@tanstack/react-query": "^5.52.3",
"@tanstack/react-query-devtools": "^5.52.3",
"antd": "^5.19.4",
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"immer": "^10.1.1",
"lexical": "^0.17.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"styled-components": "^6.1.12",
"vite-plugin-svgr": "^4.2.0",
"yup": "^1.4.0",
"zustand": "^4.5.4"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.7.0",
"@playwright/experimental-ct-react": "^1.46.1",
"@playwright/test": "^1.46.1",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/addon-onboarding": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/react": "^8.2.9",
"@storybook/react-vite": "^8.2.9",
"@storybook/test": "^8.2.9",
"@storybook/test-runner": "^0.19.1",
"@types/node": "^22.0.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vanilla-extract/vite-plugin": "^4.0.15",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"eslint-plugin-storybook": "^0.8.0",
"msw": "^2.3.5",
"storybook": "^8.2.9",
"typescript": "^5.2.2",
"vite": "^5.3.4"
},
"msw": {
"workerDirectory": [
""
]
}
}