-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "yelpcamp",
"version": "1.0.0",
"description": "Full stack YelpCamp app where users can login, post and review campgrounds, and comment",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bryce-mcmath/YelpCamp.git"
},
"author": "Kenny Wu",
"license": "ISC",
"bugs": {
"url": "https://github.com/KennyNg-19/YelpCamp/issues"
},
"homepage": "https://github.com/KennyNg-19/YelpCamp#readme",
"engines": {
"node": "16.16.0"
},
"dependencies": {
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.4",
"dotenv": "^8.1.0",
"ejs": "^3.1.7",
"express": "^4.17.1",
"express-session": "^1.16.2",
"geocoder": "^0.1.0",
"method-override": "^3.0.0",
"moment": "^2.29.4",
"mongoose": "^5.7.5",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^5.0.1",
"request": "^2.88.0"
}
}