-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.93 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
86
87
88
89
90
91
92
93
94
95
{
"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",
"engines": {
"node": "22"
},
"packageManager": "pnpm@10.0.0",
"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": "^5.4.0",
"@monaco-editor/react": "4.7.0",
"@next/third-parties": "^16.2.10",
"@radix-ui/react-context-menu": "^2.3.3",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-dropdown-menu": "^2.1.20",
"@radix-ui/react-hover-card": "^1.1.19",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-menubar": "^1.1.20",
"@radix-ui/react-scroll-area": "^1.2.14",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-separator": "^1.1.11",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.17",
"@radix-ui/react-tooltip": "^1.2.12",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"constrained-editor-plugin": "^1.4.0",
"docx": "^9.7.1",
"docx-preview": "^0.3.7",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.577.0",
"mammoth": "^1.12.0",
"mime-types": "^2.1.35",
"next": "15.5.20",
"next-themes": "^0.4.6",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-hook-form": "^7.81.0",
"react-resizable-panels": "^2.1.9",
"tailwind-merge": "^3.6.0",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.2",
"zod": "^4.4.3",
"zustand": "^5.0.14"
},
"devDependencies": {
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@commitlint/types": "^21.2.0",
"@eslint/eslintrc": "^3.3.6",
"@tailwindcss/postcss": "^4.3.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/jest": "^30.0.0",
"@types/lodash.debounce": "^4.0.9",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.20.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "^15.5.20",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"lint-staged": "^17.0.8",
"postcss": "^8.5.19",
"prettier": "^3.9.5",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4.3.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"pnpm": {
"patchedDependencies": {
"@monaco-editor/react@4.7.0": "patches/@monaco-editor__react@4.7.0.patch"
}
}
}