-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.96 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
{
"name": "translation-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --ignore-path .prettierignore --write \"**/*.+(ts|tsx|json)\"",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"prepare": "husky install",
"release": "commit-and-tag-version",
"commit": "git-cz"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.2.1",
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/radio": "^2.1.2",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@hookform/resolvers": "^3.3.2",
"@tanstack/react-query": "^5.4.3",
"@tanstack/react-query-devtools": "^5.29.2",
"@types/react-datepicker": "^4.19.3",
"@types/recordrtc": "^5.6.14",
"axios": "^1.6.0",
"dayjs": "^1.11.10",
"extendable-media-recorder": "^9.1.15",
"extendable-media-recorder-wav-encoder": "^7.0.109",
"framer-motion": "^10.16.4",
"konva": "^9.3.6",
"msw": "^2.0.8",
"react": "^18.2.0",
"react-datepicker": "^4.23.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.48.2",
"react-icons": "^5.0.1",
"react-konva": "^18.2.10",
"react-router": "^6.21.1",
"react-router-dom": "^6.17.0",
"react-use-websocket": "^4.8.1",
"recordrtc": "^5.6.2",
"use-image": "^1.1.1",
"yup": "^1.3.2",
"zustand": "^4.4.4"
},
"devDependencies": {
"@commitlint/cli": "^18.2.0",
"@commitlint/config-conventional": "^18.1.0",
"@storybook/addon-essentials": "^7.5.1",
"@storybook/addon-interactions": "^7.5.1",
"@storybook/addon-links": "^7.5.1",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.5.1",
"@storybook/react": "^7.5.1",
"@storybook/react-vite": "^7.5.1",
"@storybook/testing-library": "^0.2.2",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/ui": "^0.34.6",
"commit-and-tag-version": "^11.3.0",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-storybook": "^0.6.15",
"git-cz": "^4.9.0",
"husky": "^8.0.0",
"jsdom": "^22.1.0",
"prettier": "^3.0.3",
"simple-zustand-devtools": "^1.1.0",
"storybook": "^7.5.1",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vitest": "^0.34.6"
}
}