dataflow/package.json
Paul Trowbridge 83300d7a8e Add missing backend features before UI build
- POST /api/sources/suggest: derive source definition from CSV upload
- GET /api/sources/:name/import-log: query import history
- GET /api/rules/:id/test: test rule pattern against real records
- rules: add function_type (extract/replace) and flags columns
- get_unmapped_values: include up to 3 sample records per value
- npm start now uses nodemon for auto-reload

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-28 22:48:41 -04:00

30 lines
652 B
JSON

{
"name": "dataflow",
"version": "0.1.0",
"description": "Simple data transformation tool for ingesting, mapping, and transforming data",
"main": "api/server.js",
"scripts": {
"start": "nodemon api/server.js",
"dev": "node api/server.js",
"test": "echo \"Tests coming soon\" && exit 0"
},
"keywords": [
"etl",
"data-transformation",
"data-pipeline",
"csv-import"
],
"author": "",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"pg": "^8.11.3",
"dotenv": "^16.3.1",
"multer": "^1.4.5-lts.1",
"csv-parse": "^5.5.2"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}