-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "markdown-blog",
"version": "1.0.0",
"description": "Simple Markdown blog using node js, express, mongodb and some third party npm dependencies. This project follow MVC pattern of development.",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "git+https://github.com/Mohammad-Mesbaul-Haque/Markdown-Blog.git",
"keywords": [
"Markdown-Blog",
"nodejs",
"express",
"mongoose",
"MVC",
"ejs"
],
"author": "Mohammad Mesbaul Haque",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mohammad-Mesbaul-Haque/Markdown-Blog/issues"
},
"homepage": "https://github.com/Mohammad-Mesbaul-Haque/Markdown-Blog#readme",
"dependencies": {
"dompurify": "^2.2.8",
"ejs": "^3.1.6",
"express": "^4.17.1",
"jsdom": "^16.5.3",
"marked": "^4.0.10",
"method-override": "^3.0.0",
"mongoose": "^5.12.9",
"slugify": "^1.5.3"
},
"devDependencies": {
"nodemon": "^2.0.7"
}
}