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
43
44
45
46
|
{
"dependencies": {
"ejs": "^2.4.1",
"front-matter": "^3.0.2",
"glob": "^7.1.4",
"highlight.js": "^9.3.0",
"katex": "^0.10.2",
"marked": "^0.6.2",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"strftime": "^0.10.0"
},
"devDependencies": {
"express": "^4.16.2",
"multer": "^1.3.0",
"nodemon": "^1.19.0",
"serve": "^11.0.0"
},
"scripts": {
"build": "node index.js",
"build-prod": "node index.js",
"watch": "nodemon index.js",
"serve": "cd output && serve -l 8080",
"editor": "nodemon editor/editor.js"
},
"nodemonConfig": {
"ignore": [
"output/*"
],
"ext": "js,md,css,ejs"
},
"name": "blog.fuwn.me",
"description": "This is a collection of node scripts to build my blog - https://blog.fuwn.me",
"version": "1.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/fuwn/blog.git"
},
"author": "FUWN <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/fuwn/blog/issues"
},
"homepage": "https://github.com/fuwn/blog#readme"
}
|