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.

182 lines
5.1 KiB

  1. {
  2. "name": "wiki",
  3. "version": "1.0.9",
  4. "description": "A modern, lightweight and powerful wiki app built on NodeJS, Git and Markdown",
  5. "main": "wiki.js",
  6. "scripts": {
  7. "start": "node wiki start",
  8. "stop": "node wiki stop",
  9. "restart": "node wiki restart",
  10. "build": "node tools/fuse",
  11. "dev": "node tools/fuse -d",
  12. "dev-configure": "node tools/fuse -c",
  13. "test": "jest",
  14. "postinstall": "opencollective postinstall"
  15. },
  16. "bin": {
  17. "wiki": "wiki.js"
  18. },
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/Requarks/wiki.git"
  22. },
  23. "keywords": [
  24. "wiki",
  25. "wikis",
  26. "docs",
  27. "documentation",
  28. "markdown",
  29. "guides"
  30. ],
  31. "author": "Nicolas Giard",
  32. "license": "AGPL-3.0",
  33. "bugs": {
  34. "url": "https://github.com/Requarks/wiki/issues"
  35. },
  36. "homepage": "https://github.com/Requarks/wiki#readme",
  37. "engines": {
  38. "node": ">=6.11.1"
  39. },
  40. "dependencies": {
  41. "auto-load": "~3.0.0",
  42. "axios": "~0.16.2",
  43. "bcryptjs-then": "~1.0.1",
  44. "bluebird": "~3.5.0",
  45. "body-parser": "~1.17.2",
  46. "bunyan": "~1.8.12",
  47. "cheerio": "~1.0.0-rc.2",
  48. "child-process-promise": "~2.2.1",
  49. "chokidar": "~1.7.0",
  50. "compression": "~1.7.0",
  51. "connect-flash": "~0.1.1",
  52. "connect-mongo": "~1.3.2",
  53. "cookie-parser": "~1.4.3",
  54. "cron": "~1.2.1",
  55. "diff2html": "~2.3.0",
  56. "execa": "~0.8.0",
  57. "express": "~4.15.4",
  58. "express-brute": "1.0.1",
  59. "express-brute-mongoose": "~0.0.9",
  60. "express-session": "~1.15.5",
  61. "file-type": "~6.1.0",
  62. "filesize.js": "~1.0.2",
  63. "follow-redirects": "~1.2.4",
  64. "fs-extra": "~4.0.1",
  65. "git-wrapper2-promise": "~0.2.9",
  66. "highlight.js": "~9.12.0",
  67. "i18next": "~9.0.0",
  68. "i18next-express-middleware": "~1.0.5",
  69. "i18next-node-fs-backend": "~1.0.0",
  70. "image-size": "~0.6.0",
  71. "jimp": "~0.2.28",
  72. "js-yaml": "~3.9.1",
  73. "jsonwebtoken": "~7.4.3",
  74. "klaw": "~2.1.0",
  75. "levelup": "~1.3.9",
  76. "lodash": "~4.17.4",
  77. "markdown-it": "~8.4.0",
  78. "markdown-it-abbr": "~1.0.4",
  79. "markdown-it-anchor": "~4.0.0",
  80. "markdown-it-attrs": "~1.1.0",
  81. "markdown-it-emoji": "~1.4.0",
  82. "markdown-it-expand-tabs": "~1.0.12",
  83. "markdown-it-external-links": "0.0.6",
  84. "markdown-it-footnote": "~3.0.1",
  85. "markdown-it-mathjax": "~2.0.0",
  86. "markdown-it-task-lists": "~2.0.1",
  87. "mathjax-node": "~1.2.0",
  88. "memdown": "~1.2.4",
  89. "mime-types": "~2.1.16",
  90. "moment": "~2.18.1",
  91. "moment-timezone": "~0.5.13",
  92. "mongodb": "~2.2.31",
  93. "mongoose": "~4.11.9",
  94. "multer": "~1.3.0",
  95. "node-2fa": "~1.1.2",
  96. "node-graceful": "~0.2.3",
  97. "opencollective": "~1.0.3",
  98. "ora": "~1.3.0",
  99. "passport": "~0.4.0",
  100. "passport-azure-ad-oauth2": "0.0.4",
  101. "passport-facebook": "~2.1.1",
  102. "passport-github2": "~0.1.10",
  103. "passport-google-oauth20": "~1.0.0",
  104. "passport-ldapauth": "~2.0.0",
  105. "passport-local": "~1.0.0",
  106. "passport-slack": "0.0.7",
  107. "passport-windowslive": "~1.0.2",
  108. "passport.socketio": "~3.7.0",
  109. "pm2": "~2.6.1",
  110. "pug": "~2.0.0-rc.3",
  111. "read-chunk": "~2.1.0",
  112. "remove-markdown": "~0.2.2",
  113. "request": "~2.81.0",
  114. "search-index-adder": "~0.3.9",
  115. "search-index-searcher": "~0.2.10",
  116. "semver": "~5.4.1",
  117. "serve-favicon": "~2.4.3",
  118. "simplemde": "~1.11.2",
  119. "socket.io": "~2.0.2",
  120. "stopword": "~0.1.6",
  121. "stream-to-promise": "~2.2.0",
  122. "tar": "~4.0.1",
  123. "through2": "~2.0.3",
  124. "validator": "~8.1.0",
  125. "validator-as-promised": "~1.0.2",
  126. "winston": "~2.3.1",
  127. "yargs": "~8.0.1"
  128. },
  129. "devDependencies": {
  130. "@glimpse/glimpse": "~0.22.15",
  131. "@panter/vue-i18next": "~0.5.0",
  132. "babel-cli": "~6.26.0",
  133. "babel-jest": "~20.0.3",
  134. "babel-plugin-transform-object-assign": "~6.22.0",
  135. "babel-preset-es2015": "~6.24.1",
  136. "brace": "~0.10.0",
  137. "colors": "~1.1.2",
  138. "consolidate": "~0.14.5",
  139. "eslint": "~4.5.0",
  140. "eslint-config-standard": "~10.2.1",
  141. "eslint-plugin-import": "~2.7.0",
  142. "eslint-plugin-node": "~5.1.0",
  143. "eslint-plugin-promise": "~3.5.0",
  144. "eslint-plugin-standard": "~3.0.1",
  145. "fuse-box": "~2.2.2",
  146. "i18next-xhr-backend": "~1.4.2",
  147. "jest": "~20.0.4",
  148. "jquery": "~3.2.1",
  149. "jquery-contextmenu": "~2.5.0",
  150. "jquery-simple-upload": "~1.0.0",
  151. "jquery-smooth-scroll": "~2.2.0",
  152. "jquery-sticky": "~1.0.4",
  153. "lodash-cli": "~4.17.4",
  154. "lodash-es": "~4.17.4",
  155. "node-sass": "~4.5.3",
  156. "nodemon": "~1.11.0",
  157. "pug-lint": "~2.4.0",
  158. "twemoji-awesome": "~1.0.6",
  159. "typescript": "~2.5.2",
  160. "uglify-es": "~3.0.28",
  161. "vee-validate": "~2.0.0-rc.14",
  162. "vue": "~2.4.2",
  163. "vue-clipboards": "~1.1.0",
  164. "vue-lodash": "~1.0.3",
  165. "vue-resource": "~1.3.4",
  166. "vue-template-compiler": "~2.4.2",
  167. "vue-template-es2015-compiler": "~1.5.3",
  168. "vuex": "~2.4.0"
  169. },
  170. "jest": {
  171. "collectCoverage": false,
  172. "testMatch": [
  173. "**/test/**/*.js?(x)",
  174. "**/?(*.)(spec|test).js?(x)"
  175. ],
  176. "verbose": true
  177. },
  178. "collective": {
  179. "type": "opencollective",
  180. "url": "https://opencollective.com/wikijs",
  181. "logo": "https://opencollective.com/opencollective/logo.txt"
  182. }
  183. }