-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "colla-test",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc && vite build",
"build-storybook": "storybook build",
"dev": "vite",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
"prepare": "husky install",
"chromatic": "chromatic --exit-zero-on-changes",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@stomp/stompjs": "^7.0.0",
"@storybook/test": "^8.0.9",
"@svgr/rollup": "^8.1.0",
"@tanstack/react-query": "^5.29.0",
"@tanstack/react-query-devtools": "^5.29.0",
"@tiptap/extension-image": "^2.9.1",
"@tiptap/extension-text-align": "^2.9.1",
"@tiptap/extension-underline": "^2.9.1",
"@tiptap/react": "^2.9.1",
"@tiptap/starter-kit": "^2.9.1",
"@types/react-infinite-scroller": "^1.2.5",
"@types/stompjs": "^2.3.9",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.8",
"date-fns": "^4.1.0",
"dompurify": "^3.1.7",
"msw": "^1.3.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-infinite-scroller": "^1.2.6",
"react-router-dom": "^6.22.3",
"sockjs-client": "^1.6.1",
"styled-components": "^6.1.8",
"styled-reset": "^4.5.2",
"vite": "^5.2.0",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.3",
"zustand": "^4.5.2"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.2.26",
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/addon-themes": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/dompurify": "^3.0.5",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/sockjs-client": "^1.5.4",
"@types/styled-components": "^5.1.34",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vitest/browser": "^2.1.2",
"chromatic": "^11.3.1",
"commitlint-plugin-function-rules": "^4.0.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^8.0.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.2",
"msw-storybook-addon": "^1.10.0",
"prettier": "^3.2.5",
"storybook": "^8.0.9",
"typescript": "^5.4.4"
},
"msw": {
"workerDirectory": "public"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache"
],
"*.{ts,tsx,md,json}": [
"prettier --write"
]
}
}