dataflow/package.json
Paul Trowbridge 1260873316 Remove obsolete deploy scripts, migration helpers, and unused UI assets
Drop deploy.sh, scripts/setup-service.sh, and migrate/ — all superseded by
manage.py. Remove leftover Vite template assets (App.css, hero.png, react.svg,
vite.svg), none of which are imported.

Hoist the database/queries/ file list in manage.py to a module-level
QUERY_FILES constant so configure and deploy-functions share one definition,
and add the stacks/status query files that were missing from it.

Swap npm start/dev so start runs node and dev runs nodemon.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-07-26 13:15:46 -04:00

31 lines
669 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": "node api/server.js",
"dev": "nodemon api/server.js",
"test": "echo \"Tests coming soon\" && exit 0"
},
"keywords": [
"etl",
"data-transformation",
"data-pipeline",
"csv-import"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcrypt": "^6.0.0",
"csv-parse": "^6.2.1",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"multer": "^2.1.1",
"pg": "^8.21.0"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}