-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 973 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 973 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "markdown-blog",
"version": "1.0.0",
"description": "Markdown Blog",
"engines": {
"node": "12.16.1",
"npm": "6.14.2"
},
"main": "server.js",
"scripts": {
"start": "node server.js",
"devStart": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ZakMos/markdown-blog.git"
},
"keywords": [],
"author": "Zakaria Moslim",
"license": "ISC",
"bugs": {
"url": "https://github.com/ZakMos/markdown-blog/issues"
},
"homepage": "https://github.com/ZakMos/markdown-blog#readme",
"dependencies": {
"dompurify": "^2.0.8",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.0",
"jsdom": "^16.2.1",
"marked": "^0.8.0",
"method-override": "^3.0.0",
"mongoose": "^5.9.4",
"slugify": "^1.4.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"nodemon": "^2.0.2"
}
}