-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.18 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
{
"name": "text-editor",
"version": "0.1.0",
"private": true,
"dependencies": {
"@supabase/supabase-js": "^2.57.4",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@tiptap/extension-code-block": "^3.4.4",
"@tiptap/extension-color": "^3.4.4",
"@tiptap/extension-highlight": "^3.4.4",
"@tiptap/extension-image": "^3.4.4",
"@tiptap/extension-placeholder": "^3.4.4",
"@tiptap/extension-table": "^3.4.4",
"@tiptap/extension-table-cell": "^3.4.4",
"@tiptap/extension-table-header": "^3.4.4",
"@tiptap/extension-table-row": "^3.4.4",
"@tiptap/extension-text-align": "^3.4.4",
"@tiptap/extension-text-style": "^3.4.4",
"@tiptap/extension-underline": "^3.4.4",
"@tiptap/extension-youtube": "^3.4.4",
"@tiptap/react": "^3.4.4",
"@tiptap/starter-kit": "^3.4.4",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.112",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@types/react-syntax-highlighter": "^15.5.13",
"crypto-js": "^4.2.0",
"docx": "^9.5.1",
"framer-motion": "^10.16.4",
"lucide-react": "^0.294.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.6.0",
"react-hotkeys-hook": "^4.4.1",
"react-icons": "^5.3.0",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.20.1",
"react-scripts": "5.0.1",
"react-syntax-highlighter": "^15.6.6",
"typescript": "^4.9.5",
"uuid": "^9.0.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.13"
}
}