-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 943 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 943 Bytes
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
{
"name": "pdf-highlighter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"@supabase/supabase-js": "^2.45.4",
"bcrypt": "^5.1.1",
"file-saver": "^2.0.5",
"lucide-react": "^0.436.0",
"next": "14.2.7",
"next-auth": "^5.0.0-beta.21",
"pdfjs-dist": "4.4.168",
"react": "^18",
"react-dom": "^18",
"react-pdf-highlighter": "^7.0.0",
"sqlite3": "^5.1.7",
"tesseract.js": "^5.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.7",
"postcss": "^8.4.41",
"prettier": "3.3.3",
"tailwindcss": "^3.4.10",
"typescript": "^5"
}
}