-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.79 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "ai-blog-engine",
"version": "1.0.0",
"description": "A modern, AI-assisted blog publishing system with markdown support, SEO optimization, and automated image generation using OpenAI and Google Gemini",
"author": "MarkAC",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/MarkAC007/blog-engine.git"
},
"bugs": {
"url": "https://github.com/MarkAC007/blog-engine/issues"
},
"homepage": "https://github.com/MarkAC007/blog-engine#readme",
"keywords": [
"blog",
"blog-engine",
"markdown",
"react",
"typescript",
"vite",
"ai",
"openai",
"gemini",
"seo",
"static-site",
"content-management",
"image-generation"
],
"scripts": {
"dev": "vite",
"prebuild": "node ./scripts/generate-seo.mjs && node ./scripts/optimize-blog-images.js && node ./scripts/update-blog-paths.js",
"build": "vite build",
"build:dev": "vite build --mode development",
"lint": "eslint .",
"preview": "vite preview",
"seo:gen": "node ./scripts/generate-seo.mjs",
"optimize:images": "node ./scripts/convert-images-to-webp.js",
"optimize:blog": "node ./scripts/optimize-blog-images.js",
"update:blog-paths": "node ./scripts/update-blog-paths.js",
"optimize:blog-full": "node ./scripts/optimize-blog-images.js && node ./scripts/update-blog-paths.js",
"generate:blog-image": "node ./scripts/generate-blog-image.js"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@supabase/supabase-js": "^2.105.2",
"@tailwindcss/typography": "^0.5.16",
"@tsparticles/all": "^3.8.0",
"@tsparticles/engine": "^3.8.0",
"@tsparticles/react": "^3.0.0",
"@types/react-syntax-highlighter": "^15.5.13",
"@vitejs/plugin-react-swc": "^4.3.0",
"axios": "^1.16.0",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"fast-glob": "^3.3.3",
"framer-motion": "^12.38.0",
"gray-matter": "^4.0.3",
"lucide-react": "^1.14.0",
"openai": "^6.35.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^3.0.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.14.2",
"react-syntax-highlighter": "^16.1.1",
"remark-gfm": "^4.0.1",
"resend": "^6.12.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^17.1.0",
"postcss": "^8.4.35",
"sharp": "^0.34.5",
"tailwindcss": "^4.0.0",
"typescript": "^5.5.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1"
},
"overrides": {
"prismjs": ">=1.30.0"
}
}