-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.83 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
{
"name": "docxjs-editor",
"description": "A browser-based, client-side editor for docx.js, providing live previews of your Word documents as you code.",
"version": "0.1.0",
"private": false,
"license": "MIT",
"packageManager": "pnpm@10.2.1",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"clean": "rm -rf .next out",
"start": "next start",
"lint:check": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier --check .",
"format:fix": "prettier --write .",
"test": "jest",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^4.0.0",
"@monaco-editor/react": "4.7.0",
"@radix-ui/react-context-menu": "^2.2.6",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-hover-card": "^1.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-menubar": "^1.1.6",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-slot": "^1.1.2",
"@radix-ui/react-tabs": "^1.1.3",
"@radix-ui/react-tooltip": "^1.1.8",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"constrained-editor-plugin": "^1.4.0",
"docx": "^9.1.1",
"docx-preview": "^0.3.4",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.475.0",
"mammoth": "^1.9.0",
"mime-types": "^2.1.35",
"next": "^15.1.6",
"next-themes": "^0.4.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"react-resizable-panels": "^2.1.7",
"tailwind-merge": "^3.0.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^11.0.5",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@commitlint/types": "^19.5.0",
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.0.5",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.14",
"@types/lodash.debounce": "^4.0.9",
"@types/mime-types": "^2.1.4",
"@types/node": "22.13.1",
"@types/react": "19.0.8",
"@types/react-dom": "^19.0.3",
"eslint": "^9",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.4.3",
"postcss": "^8.5.1",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.0.5",
"ts-node": "^10.9.2",
"typescript": "5.7.3"
},
"pnpm": {
"patchedDependencies": {
"@monaco-editor/react@4.7.0": "patches/@monaco-editor__react@4.7.0.patch"
}
}
}