Files
PriceUpdaterAppv2/package.json

48 lines
1.5 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",
"test-tui": "node test-tui.js",
"demo-tui": "node demo-tui.js",
"demo-components": "node demo-components.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",
"ink": "^6.1.0",
"ink-select-input": "^6.2.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"node-fetch": "^3.3.2",
"react": "^19.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.22.0",
"@babel/preset-react": "^7.22.0",
"@babel/register": "^7.27.1",
"@testing-library/react": "^16.3.0",
"ink-testing-library": "^3.0.0",
"jest": "^29.7.0"
},
"engines": {
"node": ">=16.0.0"
}
}