2019-07-13 15:09:39 +02:00
|
|
|
{
|
2020-11-29 18:47:34 +01:00
|
|
|
"name": "HedgeDoc",
|
2021-09-19 00:09:26 +02:00
|
|
|
"version": "1.9.0",
|
2020-11-29 18:47:34 +01:00
|
|
|
"description": "The best platform to write and share markdown.",
|
2019-07-13 15:09:39 +02:00
|
|
|
"main": "app.js",
|
|
|
|
"license": "AGPL-3.0",
|
|
|
|
"scripts": {
|
|
|
|
"test": "npm run-script eslint && npm run-script jsonlint && npm run-script mocha-suite",
|
2019-08-16 11:17:14 +02:00
|
|
|
"eslint": "node_modules/.bin/eslint --max-warnings 0 lib public test app.js",
|
2019-07-13 15:09:39 +02:00
|
|
|
"jsonlint": "find . -not -path './node_modules/*' -type f -name '*.json' -o -type f -name '*.json.example' | while read json; do echo $json ; jq . $json; done",
|
2020-11-29 18:47:34 +01:00
|
|
|
"markdownlint": "remark .",
|
2019-07-13 15:09:39 +02:00
|
|
|
"mocha-suite": "NODE_ENV=test CMD_DB_URL=\"sqlite::memory:\" mocha --exit",
|
|
|
|
"standard": "echo 'standard is no longer being used, use `npm run eslint` instead!' && exit 1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"dev": "webpack --config webpack.dev.js --progress --watch",
|
2019-07-13 15:09:39 +02:00
|
|
|
"heroku-prebuild": "bin/heroku",
|
2021-05-04 00:46:00 +02:00
|
|
|
"build": "webpack --config webpack.prod.js --progress",
|
|
|
|
"start": "node app.js"
|
2019-07-13 15:09:39 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@passport-next/passport-openid": "^1.0.0",
|
|
|
|
"Idle.Js": "git+https://github.com/shawnmclean/Idle.js",
|
2020-11-29 18:47:34 +01:00
|
|
|
"archiver": "^5.0.2",
|
2021-05-04 00:46:00 +02:00
|
|
|
"async": "^3.0.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"aws-sdk": "^2.987.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"azure-storage": "^2.7.0",
|
|
|
|
"base64url": "^3.0.0",
|
|
|
|
"body-parser": "^1.15.2",
|
|
|
|
"chance": "^1.0.4",
|
|
|
|
"cheerio": "^0.22.0",
|
|
|
|
"compression": "^1.6.2",
|
|
|
|
"connect-flash": "^0.1.1",
|
2021-09-19 00:09:26 +02:00
|
|
|
"connect-session-sequelize": "^7.1.2",
|
2020-11-29 18:47:34 +01:00
|
|
|
"cookie": "^0.4.0",
|
|
|
|
"cookie-parser": "^1.4.3",
|
2019-07-13 15:09:39 +02:00
|
|
|
"deep-freeze": "^0.0.1",
|
|
|
|
"diff-match-patch": "git+https://github.com/hackmdio/diff-match-patch.git",
|
2021-05-04 00:46:00 +02:00
|
|
|
"ejs": "^3.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"express": ">=4.14",
|
|
|
|
"express-session": "^1.14.2",
|
2020-12-27 22:36:47 +01:00
|
|
|
"file-type": "^16.1.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"formidable": "^1.0.17",
|
|
|
|
"graceful-fs": "^4.1.11",
|
2021-05-04 00:46:00 +02:00
|
|
|
"helmet": "^4.5.0",
|
2020-11-29 18:47:34 +01:00
|
|
|
"i18n": "^0.13.0",
|
2021-05-04 00:46:00 +02:00
|
|
|
"is-svg": "^4.3.1",
|
2019-07-13 15:09:39 +02:00
|
|
|
"jsdom-nogyp": "^0.8.3",
|
2020-11-29 18:47:34 +01:00
|
|
|
"lodash": "^4.17.20",
|
2019-07-13 15:09:39 +02:00
|
|
|
"lutim": "^1.0.2",
|
|
|
|
"lz-string": "git+https://github.com/hackmdio/lz-string.git",
|
2020-02-19 15:14:26 +01:00
|
|
|
"mariadb": "^2.1.2",
|
2021-05-04 00:46:00 +02:00
|
|
|
"markdown-it": "^12.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"markdown-it-abbr": "^1.0.4",
|
2021-05-04 00:46:00 +02:00
|
|
|
"markdown-it-container": "^3.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"markdown-it-deflist": "^2.0.1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"markdown-it-emoji": "^2.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"markdown-it-footnote": "^3.0.1",
|
|
|
|
"markdown-it-imsize": "^2.0.1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"markdown-it-ins": "^3.0.0",
|
|
|
|
"markdown-it-mark": "^3.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"markdown-it-mathjax": "^2.0.0",
|
|
|
|
"markdown-it-regexp": "^0.4.0",
|
|
|
|
"markdown-it-sub": "^1.0.0",
|
|
|
|
"markdown-it-sup": "^1.0.0",
|
|
|
|
"mattermost": "^3.4.0",
|
2020-11-29 18:47:34 +01:00
|
|
|
"meta-marked": "git+https://github.com/hedgedoc/meta-marked",
|
2021-05-04 00:46:00 +02:00
|
|
|
"method-override": "^3.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"minimist": "^1.2.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"minio": "^7.0.19",
|
2019-07-13 15:09:39 +02:00
|
|
|
"moment": "^2.17.1",
|
|
|
|
"morgan": "^1.7.0",
|
2020-02-19 15:14:26 +01:00
|
|
|
"mysql2": "^2.0.0",
|
2021-05-04 00:46:00 +02:00
|
|
|
"node-fetch": "^2.6.1",
|
2019-07-13 15:09:39 +02:00
|
|
|
"passport": "^0.4.0",
|
|
|
|
"passport-dropbox-oauth2": "^1.1.0",
|
2021-05-04 00:46:00 +02:00
|
|
|
"passport-facebook": "^3.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"passport-github": "^1.1.0",
|
2021-05-04 00:46:00 +02:00
|
|
|
"passport-gitlab2": "^5.0.0",
|
|
|
|
"passport-google-oauth20": "^2.0.0",
|
|
|
|
"passport-ldapauth": "^3.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"passport-local": "^1.0.0",
|
|
|
|
"passport-oauth2": "^1.4.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"passport-saml": "^3.1.2",
|
2019-07-13 15:09:39 +02:00
|
|
|
"passport-twitter": "^1.0.4",
|
|
|
|
"passport.socketio": "^3.7.0",
|
|
|
|
"pdfobject": "^2.0.201604172",
|
2020-11-29 18:47:34 +01:00
|
|
|
"pg": "^8.2.1",
|
2020-02-19 15:14:26 +01:00
|
|
|
"pg-hstore": "^2.3.3",
|
2021-05-04 00:46:00 +02:00
|
|
|
"prom-client": "^13.1.0",
|
|
|
|
"prometheus-api-metrics": "^3.2.0",
|
2020-11-29 18:47:34 +01:00
|
|
|
"randomcolor": "^0.6.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"readline-sync": "^1.4.7",
|
2020-12-27 22:36:47 +01:00
|
|
|
"rimraf": "^3.0.2",
|
2019-07-13 15:09:39 +02:00
|
|
|
"scrypt-kdf": "^2.0.1",
|
2020-02-19 15:14:26 +01:00
|
|
|
"sequelize": "^5.21.1",
|
2020-11-29 18:47:34 +01:00
|
|
|
"shortid": "2.2.16",
|
|
|
|
"socket.io": "^2.1.1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"sqlite3": "^5.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"store": "^2.0.12",
|
|
|
|
"string": "^3.3.3",
|
|
|
|
"toobusy-js": "^0.5.1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"umzug": "^2.3.0",
|
|
|
|
"uuid": "^8.0.0",
|
|
|
|
"validator": "^13.0.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"winston": "^3.1.0",
|
|
|
|
"xss": "^1.0.3"
|
|
|
|
},
|
|
|
|
"resolutions": {
|
2020-11-29 18:47:34 +01:00
|
|
|
"**/tough-cookie": "~2.5.0",
|
2019-07-13 15:09:39 +02:00
|
|
|
"**/minimatch": "^3.0.2",
|
|
|
|
"**/request": "^2.88.0"
|
|
|
|
},
|
|
|
|
"engines": {
|
2021-05-04 00:46:00 +02:00
|
|
|
"node": ">=12"
|
2019-07-13 15:09:39 +02:00
|
|
|
},
|
2020-11-29 18:47:34 +01:00
|
|
|
"bugs": "https://github.com/hedgedoc/hedgedoc/issues",
|
2019-07-13 15:09:39 +02:00
|
|
|
"keywords": [
|
|
|
|
"Collaborative",
|
|
|
|
"Markdown",
|
|
|
|
"Notes"
|
|
|
|
],
|
2020-11-29 18:47:34 +01:00
|
|
|
"homepage": "https://hedgedoc.org",
|
2019-07-13 15:09:39 +02:00
|
|
|
"maintainers": [
|
|
|
|
{
|
|
|
|
"name": "Claudius Coenen",
|
|
|
|
"url": "https://www.claudiuscoenen.de/"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Christoph (Sheogorath) Kern",
|
|
|
|
"email": "codimd@sheogorath.shivering-isles.com",
|
|
|
|
"url": "https://shivering-isles.com"
|
2021-05-11 23:59:13 +02:00
|
|
|
},
|
|
|
|
{
|
2021-09-19 00:09:26 +02:00
|
|
|
"name": "David Mehren",
|
2021-05-11 23:59:13 +02:00
|
|
|
"email": "hedgedoc@herrmehren.de"
|
2019-07-13 15:09:39 +02:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-11-29 18:47:34 +01:00
|
|
|
"url": "https://github.com/hedgedoc/hedgedoc.git"
|
2019-07-13 15:09:39 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-09-19 00:09:26 +02:00
|
|
|
"abcjs": "5.12.0",
|
2020-11-29 18:47:34 +01:00
|
|
|
"babel-cli": "6.26.0",
|
|
|
|
"babel-core": "6.26.3",
|
|
|
|
"babel-loader": "7.1.5",
|
|
|
|
"babel-plugin-transform-runtime": "6.23.0",
|
|
|
|
"babel-polyfill": "6.26.0",
|
|
|
|
"babel-preset-env": "1.7.0",
|
|
|
|
"babel-runtime": "6.26.0",
|
2021-05-11 23:59:13 +02:00
|
|
|
"bootstrap": "3.4.1",
|
|
|
|
"bootstrap-validator": "0.11.9",
|
|
|
|
"codemirror": "git+https://github.com/hedgedoc/CodeMirror.git",
|
2020-11-29 18:47:34 +01:00
|
|
|
"copy-webpack-plugin": "6.4.1",
|
2021-09-19 00:09:26 +02:00
|
|
|
"css-loader": "5.2.7",
|
2021-05-11 23:59:13 +02:00
|
|
|
"emojify.js": "1.1.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"esbuild-loader": "2.15.1",
|
2021-05-11 23:59:13 +02:00
|
|
|
"escape-html": "1.0.3",
|
2021-09-19 00:09:26 +02:00
|
|
|
"eslint": "7.32.0",
|
|
|
|
"eslint-config-standard": "16.0.3",
|
|
|
|
"eslint-plugin-import": "2.24.2",
|
2021-05-04 00:46:00 +02:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
|
|
|
"eslint-plugin-promise": "5.1.0",
|
2020-11-29 18:47:34 +01:00
|
|
|
"eslint-plugin-standard": "4.1.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"exports-loader": "1.1.1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"expose-loader": "1.0.3",
|
|
|
|
"file-loader": "6.2.0",
|
2021-05-11 23:59:13 +02:00
|
|
|
"file-saver": "2.0.5",
|
|
|
|
"flowchart.js": "1.15.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"fork-awesome": "1.2.0",
|
2021-05-11 23:59:13 +02:00
|
|
|
"gist-embed": "2.6.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"highlight.js": "10.7.3",
|
2021-05-04 00:46:00 +02:00
|
|
|
"html-webpack-plugin": "4.5.2",
|
|
|
|
"imports-loader": "1.2.0",
|
2021-05-11 23:59:13 +02:00
|
|
|
"ionicons": "2.0.1",
|
|
|
|
"jquery": "3.6.0",
|
|
|
|
"jquery-mousewheel": "3.1.13",
|
|
|
|
"jquery-ui": "1.12.1",
|
2021-09-19 00:09:26 +02:00
|
|
|
"js-cookie": "3.0.1",
|
2021-05-11 23:59:13 +02:00
|
|
|
"js-sequence-diagrams": "git+https://github.com/hedgedoc/js-sequence-diagrams.git",
|
|
|
|
"js-yaml": "3.14.1",
|
2020-11-29 18:47:34 +01:00
|
|
|
"jsonlint": "1.6.3",
|
2021-05-11 23:59:13 +02:00
|
|
|
"keymaster": "1.6.2",
|
2021-05-04 00:46:00 +02:00
|
|
|
"less": "4.1.1",
|
|
|
|
"less-loader": "7.3.0",
|
2021-05-11 23:59:13 +02:00
|
|
|
"list.js": "2.3.1",
|
|
|
|
"mathjax": "2.7.9",
|
2021-09-19 00:09:26 +02:00
|
|
|
"mermaid": "8.12.1",
|
|
|
|
"mini-css-extract-plugin": "1.6.2",
|
|
|
|
"mocha": "9.1.1",
|
2020-11-29 18:47:34 +01:00
|
|
|
"mock-require": "3.0.3",
|
2021-09-19 00:09:26 +02:00
|
|
|
"optimize-css-assets-webpack-plugin": "6.0.1",
|
|
|
|
"prismjs": "1.24.1",
|
2021-05-11 23:59:13 +02:00
|
|
|
"raphael": "2.3.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"remark-cli": "10.0.0",
|
|
|
|
"remark-preset-lint-markdown-style-guide": "5.0.1",
|
2021-05-11 23:59:13 +02:00
|
|
|
"reveal.js": "3.9.2",
|
|
|
|
"select2": "3.5.2-browserify",
|
|
|
|
"socket.io-client": "2.4.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"spin.js": "4.1.1",
|
2020-11-29 18:47:34 +01:00
|
|
|
"string-loader": "0.0.1",
|
2021-09-19 00:09:26 +02:00
|
|
|
"turndown": "7.1.1",
|
2021-05-04 00:46:00 +02:00
|
|
|
"url-loader": "4.1.1",
|
2021-05-11 23:59:13 +02:00
|
|
|
"velocity-animate": "1.5.2",
|
|
|
|
"visibilityjs": "2.0.2",
|
|
|
|
"viz.js": "1.8.2",
|
2021-05-04 00:46:00 +02:00
|
|
|
"webpack": "4.46.0",
|
2021-09-19 00:09:26 +02:00
|
|
|
"webpack-cli": "4.8.0",
|
|
|
|
"webpack-merge": "5.8.0",
|
2021-05-11 23:59:13 +02:00
|
|
|
"wurl": "2.5.4"
|
2019-07-13 15:09:39 +02:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
|
|
|
"bufferutil": "^4.0.0",
|
|
|
|
"utf-8-validate": "^5.0.1"
|
|
|
|
}
|
|
|
|
}
|