-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.08 KB
/
package.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "yelpcamp",
"version": "1.0.0",
"description": "User reviews and recommendations of best campgrounds",
"main": "app.js",
"engines": {
"node": "10.x"
},
"scripts": {
"start": "node app.js",
"predev": "mongod --fork --logpath /dev/null",
"dev": "nodemon",
"postdev": "mongo admin --eval 'db.shutdownServer()' > /dev/null"
},
"author": "Imran Chowdhury",
"license": "ISC",
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.18.3",
"cloudinary": "^1.11.0",
"connect-flash": "^0.1.1",
"dotenv": "^6.0.0",
"ejs": "^2.6.1",
"express": "^4.16.3",
"express-session": "^1.15.6",
"googleapis": "^36.0.0",
"locus": "^2.0.1",
"method-override": "^2.3.10",
"moment": "^2.22.2",
"mongoose": "^5.1.7",
"mongoose-regex-search": "^0.5.0",
"multer": "^1.3.1",
"node-geocoder": "^3.22.0",
"nodemailer": "^4.6.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"password-validator": "^4.1.1"
},
"devDependencies": {
"nodemon": "^1.18.9"
}
}