mirror of
https://github.com/20kaushik02/CSE546_Cloud_Computing_Projects.git
synced 2025-12-06 13:04:07 +00:00
28 lines
706 B
JSON
28 lines
706 B
JSON
{
|
|
"name": "web-tier-express",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "cross-env NODE_ENV=development nodemon --exitcrash index.js",
|
|
"staging": "cross-env NODE_ENV=staging node index.js",
|
|
"prod": "cross-env NODE_ENV=production node index.js"
|
|
},
|
|
"author": "Kaushik Ravishankar <rknarayan02@gmail.com>",
|
|
"license": "",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv-flow": "^3.2.0",
|
|
"express": "^4.18.2",
|
|
"express-validator": "^7.0.1",
|
|
"fast-csv": "^4.3.6",
|
|
"helmet": "^7.0.0",
|
|
"multer": "^1.4.5-lts.1",
|
|
"winston": "^3.8.2"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "^7.0.3",
|
|
"nodemon": "^2.0.20"
|
|
}
|
|
}
|