-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 777 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 777 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
{
"name": "guestbook",
"version": "1.0.0",
"description": "Guestbook is an app that takes in user/guest entry (Fullname, Email & Comment) and save them in the database",
"main": "app.js",
"scripts": {
"start": "node app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devwalex/guestbook.git"
},
"author": "Salami Usman Olawale",
"license": "MIT",
"bugs": {
"url": "https://github.com/devwalex/guestbook/issues"
},
"homepage": "https://github.com/devwalex/guestbook#readme",
"dependencies": {
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"express": "^4.17.1",
"express-handlebars": "^3.1.0",
"express-session": "^1.16.2",
"method-override": "^3.0.0",
"mongoose": "^5.6.6"
}
}