33 lines
778 B
JSON
33 lines
778 B
JSON
{
|
|
"name": "node-csv-importer",
|
|
"version": "1.0.0",
|
|
"description": "This code shows how we can build a CSV importer with frameworks and libraries common in the Node.js tech stack.",
|
|
"main": "server/index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "node server/index.js",
|
|
"build": "cd client && npm install && npm run build"
|
|
},
|
|
"type": "module",
|
|
"keywords": [
|
|
"node",
|
|
"csv",
|
|
"express",
|
|
"multer",
|
|
"fast-csv",
|
|
"postgresql",
|
|
"sequelize"
|
|
],
|
|
"author": "arpendu",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2",
|
|
"fast-csv": "^4.3.6",
|
|
"json2csv": "^5.0.7",
|
|
"multer": "^1.4.5-lts.1",
|
|
"pg": "^8.8.0",
|
|
"sequelize": "^6.25.5"
|
|
}
|
|
}
|