-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.08 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.08 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
{
"name": "markdown-editor",
"private": true,
"version": "1.0.0",
"description": "A modern, feature-rich markdown editor with live preview and export capabilities",
"author": "jmagly",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jmagly/markdown-editor.git"
},
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"format": "prettier --write src"
},
"dependencies": {
"@headlessui/react": "^2.2.7",
"@types/marked": "^5.0.2",
"@uiw/react-markdown-preview": "^5.1.5",
"@uiw/react-md-editor": "^4.0.8",
"docx": "^9.5.1",
"file-saver": "^2.0.5",
"framer-motion": "^12.23.12",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"immer": "^10.1.1",
"jspdf": "^3.0.1",
"lucide-react": "^0.535.0",
"marked": "^16.1.1",
"mermaid": "^11.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"unist-util-visit": "^5.0.0",
"zustand": "^5.0.7"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.11",
"@tailwindcss/vite": "^4.1.11",
"@testing-library/jest-dom": "^6.6.4",
"@testing-library/react": "^16.3.0",
"@types/file-saver": "^2.0.7",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.2.2",
"vite": "^5.3.4",
"vitest": "^3.2.4"
}
}