-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.64 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
81
82
83
84
85
{
"name": "dodream-fe",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "biome check --write",
"format": "biome format --write",
"prepare": "husky"
},
"dependencies": {
"@floating-ui/react": "^0.27.16",
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/themes": "^3.2.1",
"@stomp/stompjs": "^7.2.1",
"@tailwindcss/postcss": "^4.1.16",
"@tanstack/react-query": "^5.90.5",
"@tanstack/react-query-devtools": "^5.90.2",
"@tiptap/extension-highlight": "^3.14.0",
"@tiptap/extension-horizontal-rule": "^3.14.0",
"@tiptap/extension-image": "^3.14.0",
"@tiptap/extension-list": "^3.14.0",
"@tiptap/extension-subscript": "^3.14.0",
"@tiptap/extension-superscript": "^3.14.0",
"@tiptap/extension-text-align": "^3.14.0",
"@tiptap/extension-typography": "^3.14.0",
"@tiptap/extensions": "^3.14.0",
"@tiptap/pm": "^3.14.0",
"@tiptap/react": "^3.14.0",
"@tiptap/starter-kit": "^3.14.0",
"@types/sockjs-client": "^1.5.4",
"@types/stompjs": "^2.3.10",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"html-react-parser": "^5.2.8",
"lodash.throttle": "^4.1.1",
"next": "^16.2.1",
"overlay-kit": "^1.8.6",
"postcss": "^8.5.6",
"radix-ui": "^1.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-hook-form": "^7.66.0",
"react-hotkeys-hook": "^5.2.1",
"sockjs-client": "^1.6.1",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.1.16",
"ui": "^0.2.4",
"ulid": "^3.0.1",
"ws": "^8.18.3",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@biomejs/biome": "2.3.0",
"@svgr/webpack": "^8.1.0",
"@tailwindcss/typography": "^0.5.19",
"@types/lodash.throttle": "^4.1.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"husky": "^9.1.7",
"lint-staged": "^16.2.4",
"sass": "^1.94.0",
"typescript": "^5"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --files-ignore-unknown=true --no-errors-on-unmatched",
"biome check --write --no-errors-on-unmatched",
"biome check --write --unsafe --no-errors-on-unmatched",
"biome format --write --no-errors-on-unmatched",
"biome lint --write --no-errors-on-unmatched"
],
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}