-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.6 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.6 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
{
"name": "notes",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"testlive": "jest --watch"
},
"dependencies": {
"@google/genai": "^1.8.0",
"@tiptap/extension-blockquote": "^2.22.3",
"@tiptap/extension-code": "^2.22.3",
"@tiptap/extension-code-block-lowlight": "^2.22.3",
"@tiptap/extension-color": "^2.22.3",
"@tiptap/extension-image": "^2.22.3",
"@tiptap/extension-link": "^2.22.3",
"@tiptap/extension-list-item": "^2.22.3",
"@tiptap/extension-table": "^2.22.3",
"@tiptap/extension-table-cell": "^2.22.3",
"@tiptap/extension-table-header": "^2.22.3",
"@tiptap/extension-table-row": "^2.22.3",
"@tiptap/extension-text-style": "^2.22.3",
"@tiptap/react": "^2.22.3",
"@tiptap/starter-kit": "^2.22.3",
"@wcj/html-to-markdown": "^2.1.1",
"html-to-text": "^9.0.5",
"html2canvas": "^1.4.1",
"lowlight": "^3.3.0",
"next": "14.2.8",
"react": "^18",
"react-dom": "^18",
"react-hot-toast": "^2.6.0",
"react-markdown": "^10.1.0",
"react-quill": "^2.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/html-pdf-node": "^1.0.2",
"@types/html-to-text": "^9.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
}
}