forked from Leadz04/ecommerce-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3.65 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3.65 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
93
94
95
96
97
98
{
"name": "ecommerce-store",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"dev:clean": "node scripts/clean-dev.js",
"build": "next build",
"start": "next start",
"lint": "eslint",
"build:pages": "cross-env GITHUB_PAGES=true next build && next export",
"export": "next export",
"deploy:pages": "npm run build:pages && touch out/.nojekyll",
"clean": "rm -rf .next && rm -rf node_modules/.cache",
"migrate": "node scripts/migrate.js",
"migrate:up": "node scripts/migrate.js up",
"migrate:down": "node scripts/migrate.js down",
"migrate:status": "node scripts/migrate.js status",
"migrate:generate": "node scripts/migrate.js generate",
"migrate:auto": "node scripts/migrate.js auto",
"migrate:snapshot": "node scripts/migrate.js snapshot",
"migrate:diff": "node scripts/migrate.js diff",
"import:products": "node scripts/import-scraped-products.js scraped.csv",
"cleanup:categories": "node scripts/cleanup-categories.js",
"import:women": "node scripts/import-women-collection.js",
"update:men": "node scripts/update-men-category.js",
"ensure:men": "node scripts/ensure-men-products.js",
"import:men": "node scripts/import-men-from-scraped.js",
"categorize:all": "node scripts/categorize-all-products.js",
"rss": "echo RSS available at /rss.xml",
"dedupe:sourced": "node scripts/dedupe-sourced-products.js",
"dedupe:products": "node scripts/remove-product-duplicates.js --dry-run",
"organize:images": "node scripts/organize-images-cloudinary.js",
"sync:cloudinary": "node scripts/sync-cloudinary-urls.js --dry-run",
"cron": "node scripts/run-cron.js",
"cron:cart": "node scripts/run-cron.js cart-abandonment",
"cron:preorders": "node scripts/run-cron.js pre-orders",
"cron:prices": "node scripts/run-cron.js price-alerts",
"cron:stock": "node scripts/run-cron.js stock-notifications",
"cron:subscriptions": "node scripts/run-cron.js subscriptions",
"cron:all": "node scripts/run-cron.js all",
"add:featured": "node scripts/add-featured-products.js",
"add:jackets": "node scripts/add-jackets.js",
"restore:images": "node scripts/restore-product-images.js"
},
"dependencies": {
"@google/genai": "^0.6.1",
"@google/generative-ai": "^0.20.0",
"@huggingface/inference": "^4.11.0",
"@imgly/background-removal": "^1.2.0",
"@stripe/react-stripe-js": "^4.0.1",
"@stripe/stripe-js": "^7.9.0",
"@tanstack/react-table": "^8.21.3",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/nodemailer": "^7.0.1",
"@types/uuid": "^10.0.0",
"axios": "^1.12.2",
"bcryptjs": "^3.0.2",
"cheerio": "^1.1.2",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.8.0",
"clsx": "^2.1.1",
"csv-parser": "^3.2.0",
"csv-stringify": "^6.6.0",
"dotenv": "^17.2.2",
"jsonwebtoken": "^9.0.2",
"lucide-react": "^0.542.0",
"mime": "^4.1.0",
"mongodb": "^6.19.0",
"mongoose": "^8.18.0",
"next": "^15.5.7",
"next-auth": "^4.24.11",
"nodemailer": "^6.10.1",
"open-graph-scraper": "^6.10.0",
"psi": "^4.1.0",
"react": "^19.1.2",
"react-dom": "^19.1.2",
"react-hot-toast": "^2.4.1",
"react-image-crop": "^10.1.7",
"replicate": "^1.2.0",
"smartcrop": "^2.0.3",
"stripe": "^18.5.0",
"uuid": "^11.1.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.5.7",
"tailwindcss": "^4",
"typescript": "^5"
}
}