diff options
| author | Fuwn <[email protected]> | 2020-11-06 18:24:26 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-11-06 18:24:26 -0800 |
| commit | 9cdce4254700691301608c6f1d3081950023cc4f (patch) | |
| tree | 9d24529acc19b354f80cb2d610aa1e7686f4d530 /package.json | |
| download | blog-9cdce4254700691301608c6f1d3081950023cc4f.tar.xz blog-9cdce4254700691301608c6f1d3081950023cc4f.zip | |
repo: initial :star:
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..c55453c --- /dev/null +++ b/package.json @@ -0,0 +1,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": "thatjdanisso.cool", + "description": "This is a collection of node scripts to build my blog - https://thatjdanisso.cool", + "version": "1.0.0", + "main": "index.js", + "repository": { + "type": "git", + "url": "git+https://github.com/jdan/thatjdanisso.cool.git" + }, + "author": "Jordan Scales <[email protected]>", + "license": "ISC", + "bugs": { + "url": "https://github.com/jdan/thatjdanisso.cool/issues" + }, + "homepage": "https://github.com/jdan/thatjdanisso.cool#readme" +} |