-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.31 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
{
"name": "adazo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"sitemap": "node scripts/generate-sitemap.mjs",
"indexnow": "node scripts/indexnow.mjs",
"build": "npm run sitemap && tsc -b && vite build",
"lint": "oxlint src",
"preview": "vite preview",
"import:bsr": "node scripts/bsr/import-bsr.mjs && node scripts/bsr/fill-quota.mjs",
"fill:quota": "node scripts/bsr/fill-quota.mjs",
"refresh:images": "node scripts/bsr/refresh-catalog-images.mjs",
"refresh:weekly": "npm run import:bsr && npm run build && wrangler deploy",
"deploy": "npm run build && wrangler deploy",
"content:research": "node scripts/research-product-enrichment.mjs",
"library:sync": "node scripts/sync-from-library.mjs",
"library:sync:dry": "node scripts/sync-from-library.mjs --dry-run"
},
"dependencies": {
"lucide-react": "^1.25.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router-dom": "^7.18.1"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.13.2",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"oxlint": "^1.74.0",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"wrangler": "^4.112.0"
}
}