first commit

This commit is contained in:
Cauê Faleiros
2026-07-02 12:54:31 -03:00
commit cd6b4c93f0
17 changed files with 1409 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"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"
}
}