forked from docker/awesome-compose
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 752 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"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",
"format": "prettier --write {**/,}*.js",
"lint": "prettier --check {**/,}*.js",
"dev": "nodemon server.js"
},
"author": "Syed Afzal",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.4",
"cookie-parser": "^1.4.4",
"cors": "^2.8.4",
"express": "^4.22.0",
"lodash": "^4.17.13",
"mongodb": "^3.0.7",
"mongoose": "^6.0.9",
"simple-node-logger": "^18.12.23",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
}
}