-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.12 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.12 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
96
97
98
99
{
"name": "markdown-editor",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite --port 3001 --strictPort false",
"build": "tsc && vite build",
"build:analyze": "ANALYZE=true npm run build",
"build:prod": "NODE_ENV=production npm run build",
"preview": "vite preview",
"clean": "rimraf node_modules/.vite && vite --force",
"test": "npx jest",
"test:e2e": "npx playwright test",
"test:e2e:ui": "npx playwright test --ui",
"test:e2e:headed": "npx playwright test --headed",
"test:e2e:debug": "npx playwright test --debug"
},
"dependencies": {
"@codemirror/commands": "^6.8.1",
"@codemirror/lang-markdown": "^6.3.2",
"@codemirror/language": "^6.11.0",
"@codemirror/language-data": "^6.5.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.36.8",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@headlessui/react": "^2.2.3",
"@heroicons/react": "^2.2.0",
"@lezer/highlight": "^1.2.1",
"@mui/icons-material": "^5.17.1",
"@mui/material": "^5.17.1",
"@saplingai/sapling-js": "^1.0.36",
"@types/file-saver": "^2.0.7",
"@types/lodash.debounce": "^4.0.9",
"@types/turndown": "^5.0.5",
"@types/uuid": "^10.0.0",
"@uiw/codemirror-theme-basic": "^4.23.10",
"@uiw/react-codemirror": "^4.21.3",
"axios": "^1.8.4",
"browser-image-compression": "^2.0.2",
"file-saver": "^2.0.5",
"framer-motion": "^12.9.2",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.10.3",
"idb": "^8.0.2",
"jspdf": "^3.0.1",
"katex": "^0.16.22",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"lodash.debounce": "^4.0.8",
"lucide-react": "^0.510.0",
"mammoth": "^1.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"react-markdown": "^10.1.0",
"react-resizable": "^3.0.5",
"reactflow": "^11.11.4",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"showdown": "^2.1.0",
"simple-spellchecker": "^1.0.2",
"socket.io-client": "^4.8.1",
"turndown": "^7.2.0",
"unist-util-visit": "^5.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@babel/preset-react": "^7.27.1",
"@babel/preset-typescript": "^7.27.1",
"@playwright/test": "^1.52.0",
"@rollup/plugin-terser": "^0.4.4",
"@tailwindcss/typography": "^0.5.10",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.21",
"babel-jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"playwright": "^1.52.0",
"postcss": "^8.5.3",
"rollup-plugin-visualizer": "^6.0.3",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"vite": "^6.3.2",
"vite-plugin-compression": "^0.5.1"
}
}