-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.04 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.04 KB
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
{
"name": "node-blog",
"version": "1.0.0",
"description": "This is a blog builded with nodejs, express and mongodb.",
"main": "app.js",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"express": "^4.17.1",
"express-handlebars": "^5.1.0",
"express-session": "^1.17.1",
"mongoose": "^5.10.7",
"multer": "^1.4.2",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"uuid": "^8.3.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegocosta-dev/node-blog.git"
},
"keywords": [
"nodejs",
"express",
"mongodb"
],
"author": "Diego Costa <toiablender@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegocosta-dev/node-blog/issues"
},
"homepage": "https://github.com/diegocosta-dev/node-blog#readme"
}