You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

168 lines
4.7 KiB

  1. {
  2. "name": "wiki",
  3. "version": "1.0.0-beta.12",
  4. "description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
  5. "main": "server.js",
  6. "scripts": {
  7. "start": "node wiki start",
  8. "stop": "node wiki stop",
  9. "restart": "node wiki restart",
  10. "build": "node fuse",
  11. "dev": "node fuse -d",
  12. "dev-configure": "node fuse -c",
  13. "test": "jest",
  14. "snyk-protect": "snyk protect",
  15. "__prepublish": "npm run snyk-protect"
  16. },
  17. "bin": {
  18. "wiki": "wiki.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "git+https://github.com/Requarks/wiki.git"
  23. },
  24. "keywords": [
  25. "wiki",
  26. "wikis",
  27. "docs",
  28. "documentation",
  29. "markdown",
  30. "guides"
  31. ],
  32. "author": "Nicolas Giard",
  33. "license": "AGPL-3.0",
  34. "bugs": {
  35. "url": "https://github.com/Requarks/wiki/issues"
  36. },
  37. "homepage": "https://github.com/Requarks/wiki#readme",
  38. "engines": {
  39. "node": ">=4.6"
  40. },
  41. "dependencies": {
  42. "auto-load": "^2.1.0",
  43. "axios": "^0.16.1",
  44. "bcryptjs-then": "^1.0.1",
  45. "bluebird": "^3.5.0",
  46. "body-parser": "^1.17.1",
  47. "bunyan": "^1.8.10",
  48. "cheerio": "^0.22.0",
  49. "child-process-promise": "^2.2.1",
  50. "chokidar": "^1.7.0",
  51. "compression": "^1.6.2",
  52. "connect-flash": "^0.1.1",
  53. "connect-mongo": "^1.3.2",
  54. "cookie-parser": "^1.4.3",
  55. "cron": "^1.2.1",
  56. "diff2html": "^2.3.0",
  57. "execa": "^0.6.3",
  58. "express": "^4.15.2",
  59. "express-brute": "^1.0.1",
  60. "express-brute-mongoose": "0.0.8",
  61. "express-session": "^1.15.2",
  62. "file-type": "^4.3.0",
  63. "filesize.js": "^1.0.2",
  64. "follow-redirects": "^1.2.3",
  65. "fs-extra": "^3.0.1",
  66. "git-wrapper2-promise": "^0.2.9",
  67. "highlight.js": "^9.11.0",
  68. "i18next": "^8.2.0",
  69. "i18next-express-middleware": "^1.0.5",
  70. "i18next-node-fs-backend": "^1.0.0",
  71. "image-size": "^0.5.2",
  72. "jimp": "https://github.com/ngpixel/jimp.git",
  73. "js-yaml": "^3.8.4",
  74. "jsonwebtoken": "^7.4.0",
  75. "klaw": "^1.3.1",
  76. "levelup": "^1.3.5",
  77. "lodash": "^4.17.4",
  78. "markdown-it": "^8.3.1",
  79. "markdown-it-abbr": "^1.0.4",
  80. "markdown-it-anchor": "^4.0.0",
  81. "markdown-it-attrs": "^0.8.0",
  82. "markdown-it-emoji": "^1.3.0",
  83. "markdown-it-expand-tabs": "^1.0.12",
  84. "markdown-it-external-links": "0.0.6",
  85. "markdown-it-footnote": "^3.0.1",
  86. "markdown-it-mathjax": "^2.0.0",
  87. "markdown-it-task-lists": "^2.0.1",
  88. "memdown": "^1.2.4",
  89. "mime-types": "^2.1.15",
  90. "moment": "^2.18.1",
  91. "moment-timezone": "^0.5.13",
  92. "mongodb": "^2.2.26",
  93. "mongoose": "^4.9.9",
  94. "multer": "^1.3.0",
  95. "ora": "^1.2.0",
  96. "passport": "^0.3.2",
  97. "passport-azure-ad-oauth2": "0.0.4",
  98. "passport-facebook": "^2.1.1",
  99. "passport-github2": "^0.1.10",
  100. "passport-google-oauth20": "^1.0.0",
  101. "passport-ldapauth": "^1.0.0",
  102. "passport-local": "^1.0.0",
  103. "passport-slack": "0.0.7",
  104. "passport-windowslive": "^1.0.2",
  105. "passport.socketio": "^3.7.0",
  106. "pm2": "^2.4.6",
  107. "pug": "^2.0.0-rc.1",
  108. "read-chunk": "^2.0.0",
  109. "remove-markdown": "^0.1.0",
  110. "request": "^2.81.0",
  111. "search-index-adder": "https://github.com/ngpixel/search-index-adder.git",
  112. "search-index-searcher": "https://github.com/ngpixel/search-index-searcher.git",
  113. "semver": "^5.3.0",
  114. "serve-favicon": "^2.4.2",
  115. "simplemde": "^1.11.2",
  116. "socket.io": "^2.0.1",
  117. "stopword": "^0.1.1",
  118. "stream-to-promise": "^2.2.0",
  119. "tar": "^3.1.2",
  120. "through2": "^2.0.3",
  121. "validator": "^7.0.0",
  122. "validator-as-promised": "^1.0.2",
  123. "winston": "^2.3.1",
  124. "yargs": "^8.0.1"
  125. },
  126. "devDependencies": {
  127. "@glimpse/glimpse": "^0.20.8",
  128. "babel-cli": "latest",
  129. "babel-jest": "latest",
  130. "babel-preset-es2015": "latest",
  131. "brace": "^0.10.0",
  132. "colors": "^1.1.2",
  133. "eslint": "latest",
  134. "eslint-config-standard": "latest",
  135. "eslint-plugin-import": "latest",
  136. "eslint-plugin-node": "latest",
  137. "eslint-plugin-promise": "latest",
  138. "eslint-plugin-standard": "latest",
  139. "fuse-box": "^2.0.0",
  140. "jest": "latest",
  141. "jquery": "^3.2.1",
  142. "jquery-contextmenu": "^2.4.5",
  143. "jquery-simple-upload": "^1.0.0",
  144. "jquery-smooth-scroll": "^2.2.0",
  145. "jquery-sticky": "^1.0.4",
  146. "mathjax": "^2.7.1",
  147. "node-sass": "latest",
  148. "nodemon": "latest",
  149. "pug-lint": "latest",
  150. "snyk": "latest",
  151. "twemoji-awesome": "^1.0.6",
  152. "typescript": "^2.3.2",
  153. "uglify-js": "latest",
  154. "vee-validate": "^2.0.0-rc.3",
  155. "vue": "^2.3.3",
  156. "vue-template-compiler": "^2.3.3",
  157. "vue-template-es2015-compiler": "^1.5.2"
  158. },
  159. "jest": {
  160. "collectCoverage": false,
  161. "testMatch": [
  162. "**/test/**/*.js?(x)",
  163. "**/?(*.)(spec|test).js?(x)"
  164. ],
  165. "verbose": true
  166. },
  167. "snyk": true
  168. }