-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.75 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": "glutenfree-site",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -H 0.0.0.0 -p 3000",
"build:places": "node scripts/build_places.mjs",
"validate:places": "node scripts/validate_places.mjs",
"build": "next build",
"pages:build": "npm run build:places && npm run build && next-on-pages",
"start": "next start",
"lint": "next lint",
"import:naver": "node scripts/import_naver.mjs",
"publish:local": "npm run import:naver && npm run build:places && npm run validate:places",
"enrich:notes": "node scripts/enrich_notes.mjs",
"enrich:links": "node scripts/enrich_links.mjs",
"optimize:images": "node scripts/optimize-images.mjs",
"upload:cloudinary": "node scripts/upload-cloudinary.mjs",
"sync:naver": "node scripts/sync-naver.mjs",
"fetch:naver-images": "node scripts/fetch-naver-images.mjs",
"integrate:naver-images": "node scripts/integrate-naver-images.mjs",
"add:place": "node scripts/add-place.mjs",
"discover:places": "node scripts/discover-places.mjs",
"generate:caption": "node scripts/generate-caption.mjs",
"ga4": "node --env-file=.env scripts/ga4-report.mjs",
"weekly": "bash scripts/weekly-publish.sh"
},
"dependencies": {
"cloudinary": "^2.7.0",
"leaflet": "^1.9.4",
"next": "15.4.3",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-leaflet": "^5.0.0"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@cloudflare/next-on-pages": "^1.13.16",
"@eslint/eslintrc": "^3",
"@google-analytics/data": "^5.2.1",
"@tailwindcss/postcss": "^4",
"@types/node": "25.3.5",
"@types/react": "19.2.14",
"eslint": "^9",
"eslint-config-next": "15.4.3",
"sharp": "^0.34.5",
"tailwindcss": "^4"
}
}