2021-03-26 08:30:56 +07:00
|
|
|
{
|
|
|
|
"name": "data-migration-nodejs",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Nodejs data migration with excel, csv and rest apis.",
|
|
|
|
"main": "index.js",
|
|
|
|
"scripts": {
|
2021-03-26 13:26:14 +07:00
|
|
|
"test": "jest",
|
2021-03-30 17:04:31 +07:00
|
|
|
"start": "nodemon src/index.js",
|
|
|
|
"export": "nodemon src/test.js"
|
2021-03-26 08:30:56 +07:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/CUBETIQ/data-migration-nodejs.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"nodejs",
|
|
|
|
"excel",
|
|
|
|
"csv",
|
|
|
|
"rest",
|
|
|
|
"data-import"
|
|
|
|
],
|
|
|
|
"author": "Sambo Chea <sombochea@cubetiqs.com>",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/CUBETIQ/data-migration-nodejs/issues"
|
|
|
|
},
|
2021-03-26 13:26:14 +07:00
|
|
|
"homepage": "https://github.com/CUBETIQ/data-migration-nodejs#readme",
|
|
|
|
"dependencies": {
|
2021-03-30 17:04:31 +07:00
|
|
|
"axios": "^0.21.1",
|
|
|
|
"excel2json-xlsx": "^1.0.5",
|
2021-03-27 12:20:52 +07:00
|
|
|
"express": "^4.17.1",
|
2021-03-26 17:37:36 +07:00
|
|
|
"jest": "^26.6.3",
|
2021-03-27 12:20:52 +07:00
|
|
|
"multer": "^1.4.2",
|
2021-03-30 17:04:31 +07:00
|
|
|
"node-fetch": "^2.6.1",
|
2021-03-27 12:20:52 +07:00
|
|
|
"nodemon": "^2.0.7",
|
2021-03-26 17:37:36 +07:00
|
|
|
"read-excel-file": "^5.0.0",
|
|
|
|
"xlsx": "^0.16.9"
|
2021-03-26 13:26:14 +07:00
|
|
|
}
|
2021-03-26 08:30:56 +07:00
|
|
|
}
|