-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 731 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 731 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": "node-mongodb-demo",
"version": "0.1.0",
"description": "Quick demo of a Node web app that uses MongoDB.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon app/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/alanplotko/nodejs-mongodb-demo"
},
"keywords": [
"node", "mongodb", "demo"
],
"author": "Alan Plotko",
"license": "MIT",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"express-validator": "^2.21.0",
"moment": "^2.16.0",
"mongoose": "^4.6.7",
"nodemon": "^1.11.0",
"pug": "^2.0.0-beta6",
"util": "^0.10.3"
}
}