Files
PriceUpdaterAppv2/package.json
2025-08-10 14:54:47 -05:00

43 lines
1.3 KiB
JSON

{
"name": "shopify-price-updater",
"version": "1.0.0",
"description": "A Node.js script to bulk update Shopify product prices based on tags",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"tui": "node src/tui-entry.js",
"update": "set OPERATION_MODE=update && node src/index.js",
"rollback": "set OPERATION_MODE=rollback && node src/index.js",
"schedule-update": "set OPERATION_MODE=update && node src/index.js",
"schedule-rollback": "set OPERATION_MODE=rollback && node src/index.js",
"debug-tags": "node debug-tags.js",
"test": "jest"
},
"keywords": [
"shopify",
"price-updater",
"graphql",
"bulk-update"
],
"author": "",
"license": "MIT",
"dependencies": {
"@shopify/shopify-api": "^7.7.0",
"dotenv": "^16.3.1",
"node-fetch": "^3.3.2",
"ink": "^3.2.0",
"react": "^17.0.2",
"ink-text-input": "^4.0.3",
"ink-select-input": "^4.2.2",
"ink-spinner": "^4.0.3"
},
"devDependencies": {
"jest": "^29.7.0",
"ink-testing-library": "^2.1.0",
"@babel/preset-react": "^7.22.0",
"@babel/preset-env": "^7.22.0"
},
"engines": {
"node": ">=16.0.0"
}
}