-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
81 lines (81 loc) · 2.52 KB
/
package.json
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
{
"private": true,
"scripts": {
"dev": "npm run stop; next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"firebase": "npm run stop; firebase emulators:start",
"stop": "for port in 3000 3001 3002 4000 4001 4002 9150; do lsof -t -i:$port | xargs -r kill; done",
"prepare": "husky install",
"cypress": "cypress open"
},
"dependencies": {
"@headlessui/react": "^1.7.19",
"@prosemirror-adapter/react": "^0.2.6",
"@react-pdf/renderer": "^3.4.4",
"@testing-library/cypress": "^10.0.1",
"@tiptap-pro/extension-details": "^2.8.1",
"@tiptap-pro/extension-details-content": "^2.8.1",
"@tiptap-pro/extension-details-summary": "^2.8.1",
"@tiptap-pro/extension-emoji": "^2.8.1",
"@tiptap-pro/extension-mathematics": "^2.8.1",
"@tiptap-pro/extension-unique-id": "^2.8.1",
"@tiptap/extension-code-block-lowlight": "^2.3.1",
"@tiptap/extension-image": "^2.3.1",
"@tiptap/extension-link": "^2.3.1",
"@tiptap/extension-task-item": "^2.3.1",
"@tiptap/extension-task-list": "^2.3.1",
"@tiptap/pm": "^2.3.1",
"@tiptap/react": "^2.3.1",
"@tiptap/starter-kit": "^2.3.1",
"@vercel/og": "^0.6.2",
"cheerio": "^1.0.0-rc.12",
"cypress": "^13.8.1",
"firebase": "^10.11.1",
"html2pdf.js": "^0.10.1",
"jotai": "^2.8.0",
"katex": "^0.16.10",
"lottie-react": "^2.4.0",
"lowlight": "^3.1.0",
"next": "^14.2.3",
"next-pwa": "^5.6.0",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-dom": "18.3.1",
"react-firebase-hooks": "^5.1.1",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.0",
"react-infinite-scroll-component": "^6.1.0",
"react-loading-skeleton": "^3.4.0",
"react-markdown": "^9.0.1",
"react-scroll-parallax": "^3.4.5",
"refractor": "^4.8.1",
"remark-gfm": "^4.0.0",
"remove-markdown": "^0.5.0",
"tippy.js": "^6.3.7",
"tiptap-markdown": "^0.8.10"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"@types/node": "20.12.8",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/remove-markdown": "^0.3.4",
"autoprefixer": "^10.4.19",
"cypress": "^13.8.1",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"husky": "^9.0.11",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.14",
"pretty-quick": "^4.0.0",
"tailwindcss": "^3.4.3",
"typescript": "5.4.5"
},
"volta": {
"node": "20.12.2"
}
}