-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.94 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
{
"name": "social-recipe-saver",
"version": "0.1.0",
"description": "A self-hosted web application to extract, save, and organize recipes from social media using AI.",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev --webpack",
"dev:turbo": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "bun test",
"cookies:refresh": "bun run --cwd tools/instagram-cookies refresh",
"lockfile:sync": "npm install --package-lock-only"
},
"dependencies": {
"@google/genai": "^2.13.0",
"@prisma/adapter-better-sqlite3": "^7.9.0",
"@prisma/client": "^7.9.0",
"better-sqlite3": "^12.11.1",
"dompurify": "^3.4.12",
"dotenv": "^17.4.2",
"fluent-ffmpeg": "^2.1.3",
"jsdom": "^29.1.1",
"next": "16.2.12",
"nodemailer": "^9.0.3",
"prisma": "^7.9.0",
"react": "19.2.8",
"react-dom": "19.2.8",
"yt-dlp-exec": "^1.0.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.3",
"@types/dompurify": "^3.2.0",
"@types/fluent-ffmpeg": "^2.1.28",
"@types/jsdom": "^27.0.0",
"@types/node": "^20.19.43",
"@types/nodemailer": "^7.0.12",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.5",
"eslint-config-next": "16.2.12",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver",
"yt-dlp-exec"
],
"overrides": {
"minimatch": ">=10.2.4",
"tar": ">=7.5.11",
"cross-spawn": ">=7.0.5",
"glob": ">=10.5.0",
"diff": ">=5.2.2",
"brace-expansion": ">=5.0.7",
"hono": ">=4.12.27",
"@hono/node-server": ">=1.19.13",
"lodash": "^4.18.1",
"protobufjs": ">=8.6.6",
"fast-uri": ">=3.1.3",
"picomatch": ">=4.0.4",
"ip-address": ">=10.1.1",
"postcss": ">=8.5.10",
"ws": ">=8.20.1",
"flatted": ">=3.4.0"
}
}