Sample React-Express-MongoDB (#59)

Signed-off-by: Afzal <sah.afzal@gmail.com>
This commit is contained in:
Syed Afzal
2020-05-12 00:40:39 +05:00
committed by GitHub
parent 3599a2e685
commit 2f750eb4f7
43 changed files with 18779 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
{
"name": "docker_node_mongo_starter",
"version": "1.0.0",
"description": "docker starter with node js and mongodb services",
"main": "index.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"author": "Syed Afzal",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.2",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"express": "^4.17.1",
"lodash": "^4.17.13",
"mongodb": "^3.0.7",
"mongoose": "^5.0.15",
"simple-node-logger": "^18.12.23",
"validator": "^10.1.0"
},
"devDependencies": {
"nodemon": "^2.0.3"
}
}