Files
production-order-tiny/package.json
Cauê Faleiros cd6b4c93f0 first commit
2026-07-02 12:54:31 -03:00

25 lines
736 B
JSON

{
"name": "production-orders-sync",
"version": "1.0.0",
"description": "Standalone worker that syncs Tiny ERP production orders into the Graphs Postgres database.",
"main": "src/index.js",
"type": "commonjs",
"scripts": {
"sync": "node src/index.js",
"start": "node src/index.js",
"test": "node --test",
"check": "node --check src/index.js && node --check src/config.js && node --check src/db.js && node --check src/logger.js && node --check src/mapper.js && node --check src/sync.js && node --check src/tinyClient.js"
},
"keywords": [
"tiny-erp",
"production-orders",
"postgres"
],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^17.4.2",
"pg": "^8.20.0"
}
}