All APIs compatible with existing code. Added quiet:true to dotenv config to suppress the new startup log message added in dotenv 17. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
31 lines
669 B
JSON
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": "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": {
|
|
"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"
|
|
}
|
|
}
|