summaryrefslogtreecommitdiff
path: root/package.json (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-03Update version to 1.2.1Sheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-10-03Revert "Remove unused dependency"Sheogorath1-0/+1
This reverts commit d2ded08f59a3215931b597795dae1f334ebd9d90. Seems like the package is used for building the sqlite3 integration. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-10-03Remove unused dependencySheogorath1-1/+0
This dependency where installed, but it seems like they were never used. Seems like it's a remaining piece from the the prototyping phase of the project. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-09-18Replace `uws` with `ws` packageSheogorath1-1/+5
`uws` was deprecated by its maintainer and starts to cause more and more problems and issue reports. So it's time to replace it and use a maintained project instead. Lucky us, `uws` and `ws` can be used in an identical way, without problems. To provide better performance, we install the optional packages as well. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-09-06Upgrade to Webpack 4 - clean dependenciesDavid Mehren1-6/+2
Signed-off-by: David Mehren <dmehren1@gmail.com>
2018-09-06Upgrade to Webpack 4 - fix CSS import orderDavid Mehren1-2/+2
Signed-off-by: David Mehren <dmehren1@gmail.com>
2018-09-06Upgrade to Webpack 4 - first tryDavid Mehren1-24/+29
Signed-off-by: David Mehren <dmehren1@gmail.com>
2018-09-05Switch to own, fixed, lz-string versionSheogorath1-4/+4
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-07-27Update markdown-pdfSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Release 1.2.0Sheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Revert "Update pg"Sheogorath1-1/+1
This reverts commit 4d4163c1705af7dbdeeac3e788e72f6683221680.
2018-06-30Update randomcolorSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update pgSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update storeSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update highlight.jsSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update xss protectionSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update sqliteSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update shortidSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update passportSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update to octicon 4.4.0Sheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update passport-ldapSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update validatorSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update password-gitlab2Sheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update minioSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-30Update markdown-pdfSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-24Rebrand HackMD to CodiMDSheogorath1-3/+3
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-06-01Add Azure Blob Storage supportÁdám Hóka1-0/+1
Signed-off-by: Adam Hoka <hoka.adam@nexogen.hu>
2018-05-27Fix missing dependencySheogorath1-0/+1
To export the notes we need the archiver package that takes care of creating the zip files. Looks like I forgot this one in the initial commit. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-05-23Release 1.1.1-ceSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-05-21Add current requirements for node versionsSheogorath1-1/+1
Right now we can only run on node versions below 10.x thanks to scrypt dependencies. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-05-17Upgrade base64url packageSheogorath1-1/+1
There was recently a possible security problem with base64url. Shouldn't really hit us but it doesn't hurt. Details: https://snyk.io/vuln/npm:base64url:20180511 Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-04-16Fix possible file limit errorsSheogorath1-0/+1
As we currently may need higher nofile limits than usual/default on various systems this commit should probide a fix for that an allow to build HackMD without highering these limits and increase security. Inspiration was found in a copy-webpack-plugin-issue[1] and found by @thegcat[2]. Thanks for that! Signed-off-by: Sheogorath <sheogorath@shivering-isles.com> [1]: https://github.com/webpack-contrib/copy-webpack-plugin/issues/59#issuecomment-228563990 [2]: https://github.com/thegcat
2018-04-14Add config.json.example to npm testSheogorath1-1/+1
This commit extends the find command to also match the example config file. This should validate the syntax or this file to prevent syntax errors for future pull request. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-04-06Release 1.1.0-ceSheogorath1-1/+1
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-03-06Remove engine.io-client dependency and fix webpack configDavid Mehren1-1/+0
Signed-off-by: David Mehren <dmehren1@gmail.com>
2018-02-26Remove and replace all note id compression in LZString with base64urlMax Wu1-0/+1
Signed-off-by: Max Wu <jackymaxj@gmail.com>
2018-02-19Use jq instead of jsonlintSheogorath1-1/+1
As the jsonlint package from NPM causes problems and looks unmaintained, it'll be replaced with `jq` a well maintained project which allows to search through JSON files in a `grep`-like style, but knowing the JSON structure. Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-01-30Update socket.io to version 2.0.4Sheogorath1-2/+2
Signed-off-by: Sheogorath <sheogorath@shivering-isles.com>
2018-01-29Add simple user-management tool for emailsignin …Dario Ernst1-0/+2
Currently, administrators of closed instances need to manually fiddle in their databases for user-management. This commit adds a small commandline utility that allows to create and delete users. Signed-off-by: Dario Ernst <dario@kanojo.de>
2018-01-29Upgrade reveal.js to 3.6.0 and useCDN option for CSS includeWu Cheng-Han1-1/+1
2018-01-19Release 1.0.1-ceSheogorath1-1/+1
2018-01-18Release 1.0.0-ceSheogorath1-1/+1
2017-11-28Initial support for SAML authenticationNorihito Nakae1-0/+1
2017-11-02Revert "Load js-url lib using legacy-loader"Literallie1-1/+0
Didn't work in Firefox for some reason. `[Script Loader] ReferenceError: module is not defined` This reverts commit 5b83deb043296c23ff912a2472703c1f7faddb4b.
2017-10-31Add mattermost authenticationChristoph Witzany1-0/+2
2017-10-30Upgrade mermaid to v7.1.0, fix #600Peter Dave Hello1-1/+1
2017-10-22Load js-url lib using legacy-loaderLiterallie1-0/+1
Doesn't use eval, plus no window object access
2017-10-22CSP: Add nonce to slide view inline JSLiterallie1-0/+1
2017-10-14Add jsonlint script to ensure all json files are validPeter Dave Hello1-1/+3
2017-10-13Integrate npm package "doctoc" to update README.mdPeter Dave Hello1-1/+3