-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.09 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.09 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
{
"name": "yoga-mat-lab-data",
"version": "1.0.0",
"description": "Data pipeline for scraping and normalizing yoga mat product information",
"private": true,
"type": "module",
"scripts": {
"fetch": "tsx scripts/get-brands-from-convex.ts",
"enrich": "tsx scripts/enrich-data.ts",
"normalize": "tsx scripts/normalize-data.ts",
"aggregate": "tsx scripts/aggregate-data.ts",
"detect-changes": "tsx scripts/detect-changes.ts",
"download-images": "tsx scripts/download-images.ts",
"update-symlinks": "tsx scripts/update-latest-symlinks.ts",
"check-series-alignment": "tsx scripts/check-series-alignment.ts",
"find-series-gaps": "node scripts/find-series-gaps.cjs",
"pipeline": "npm run fetch && npm run enrich && npm run normalize && npm run aggregate && npm run detect-changes && npm run update-symlinks"
},
"dependencies": {
"convex": "^1.16.3",
"dotenv": "^17.2.3",
"playwright": "^1.57.0",
"sharp": "^0.33.5",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.10.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}