-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.47 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.47 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
{
"name": "otzaria-library",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate-secret": "node scripts/generate-secret.js",
"check-deploy": "node scripts/check-deployment-ready.js",
"data:stats": "node scripts/data-management.js stats",
"data:list": "node scripts/data-management.js list-books",
"data:export": "node scripts/data-management.js export-progress",
"data:help": "node scripts/data-management.js help",
"thumbnails:check": "node scripts/check-thumbnails.js",
"thumbnails:upload": "node scripts/upload-thumbnails-to-blob.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.940.0",
"@aws-sdk/s3-request-presigner": "^3.940.0",
"@octokit/rest": "^22.0.1",
"@vercel/blob": "^2.0.0",
"backblaze-b2": "^1.7.1",
"bcryptjs": "^3.0.3",
"dotenv": "^17.2.3",
"framer-motion": "^12.23.24",
"mongodb": "^7.0.0",
"next": "16.0.10",
"next-auth": "^4.24.13",
"openai": "^6.9.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"recharts": "^3.5.0",
"tesseract.js": "^6.0.1",
"zod": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"autoprefixer": "^10.4.16",
"eslint": "^9.39.2",
"eslint-config-next": "^16.0.10",
"eslint-plugin-react": "^7.37.5",
"globals": "^16.5.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6"
},
"type": "module"
}