-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.71 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
{
"name": "react-rich-editor",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"prepare": "lefthook install",
"dev": "vite",
"dev:prod": "vite --mode production",
"preview": "vite preview",
"build:tsc": "tsc -b",
"build:vite": "vite build",
"build": "npm-run-all build:tsc build:vite",
"biome:check": "biome check --write --no-errors-on-unmatched --diagnostic-level=error --files-ignore-unknown=true",
"pre-commit:run": "lefthook run pre-commit"
},
"dependencies": {
"@radix-ui/react-popover": "^1.1.4",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@tiptap/core": "^2.10.3",
"@tiptap/pm": "^2.10.3",
"@tiptap/react": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"es-toolkit": "^1.29.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.468.0",
"p-queue": "^8.0.1",
"querystringify": "^2.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-use": "^17.6.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.3",
"zustand": "^5.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/js-cookie": "^3.0.6",
"@types/node": "^20.17.10",
"@types/querystringify": "^2.0.2",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-legacy": "^6.0.0",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"lefthook": "^1.8.5",
"less": "4.2.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.16",
"type-fest": "^4.30.0",
"typescript": "~5.6.2",
"vite": "^6.0.1",
"vite-plugin-svgr": "^4.3.0",
"vite-tsconfig-paths": "^5.1.3"
},
"engines": {
"node": ">=20"
}
}