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.

198 lines
5.4 KiB

  1. {
  2. "name": "wiki",
  3. "version": "2.0.0",
  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. "test": "jest",
  13. "postinstall": "opencollective postinstall"
  14. },
  15. "bin": {
  16. "wiki": "wiki.js"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/Requarks/wiki.git"
  21. },
  22. "keywords": [
  23. "wiki",
  24. "wikis",
  25. "docs",
  26. "documentation",
  27. "markdown",
  28. "guides"
  29. ],
  30. "author": "Nicolas Giard",
  31. "license": "AGPL-3.0",
  32. "bugs": {
  33. "url": "https://github.com/Requarks/wiki/issues"
  34. },
  35. "homepage": "https://github.com/Requarks/wiki#readme",
  36. "engines": {
  37. "node": ">=6.11.1"
  38. },
  39. "dependencies": {
  40. "apollo-server-express": "1.1.3",
  41. "auto-load": "3.0.0",
  42. "axios": "0.16.2",
  43. "bcryptjs-then": "1.0.1",
  44. "bluebird": "3.5.1",
  45. "body-parser": "1.18.2",
  46. "bull": "3.3.0",
  47. "bunyan": "1.8.12",
  48. "cheerio": "1.0.0-rc.2",
  49. "child-process-promise": "2.2.1",
  50. "chokidar": "1.7.0",
  51. "compression": "1.7.1",
  52. "connect-flash": "0.1.1",
  53. "connect-redis": "3.3.2",
  54. "cookie-parser": "1.4.3",
  55. "diff2html": "2.3.1",
  56. "dotize": "^0.2.0",
  57. "execa": "0.8.0",
  58. "express": "4.16.1",
  59. "express-brute": "1.0.1",
  60. "express-brute-redis": "0.0.1",
  61. "express-session": "1.15.6",
  62. "file-type": "6.2.0",
  63. "filesize.js": "1.0.2",
  64. "follow-redirects": "1.2.5",
  65. "fs-extra": "4.0.2",
  66. "git-wrapper2-promise": "0.2.9",
  67. "graphql": "0.10.5",
  68. "graphql-tools": "2.2.1",
  69. "highlight.js": "9.12.0",
  70. "i18next": "9.1.0",
  71. "i18next-express-middleware": "1.0.7",
  72. "i18next-localstorage-cache": "1.1.1",
  73. "i18next-node-fs-backend": "1.0.0",
  74. "image-size": "0.6.1",
  75. "ioredis": "3.1.4",
  76. "jimp": "0.2.28",
  77. "js-yaml": "3.10.0",
  78. "jsonwebtoken": "8.0.1",
  79. "klaw": "2.1.0",
  80. "lodash": "4.17.4",
  81. "markdown-it": "8.4.0",
  82. "markdown-it-abbr": "1.0.4",
  83. "markdown-it-anchor": "4.0.0",
  84. "markdown-it-attrs": "1.2.0",
  85. "markdown-it-emoji": "1.4.0",
  86. "markdown-it-expand-tabs": "1.0.12",
  87. "markdown-it-external-links": "0.0.6",
  88. "markdown-it-footnote": "3.0.1",
  89. "markdown-it-mathjax": "2.0.0",
  90. "markdown-it-task-lists": "2.0.1",
  91. "mathjax-node": "1.2.1",
  92. "mime-types": "2.1.17",
  93. "moment": "2.18.1",
  94. "moment-timezone": "0.5.13",
  95. "multer": "1.3.0",
  96. "node-2fa": "1.1.2",
  97. "node-graceful": "0.2.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.11",
  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. "pg": "6.4.2",
  109. "pg-hstore": "2.3.2",
  110. "pg-promise": "6.10.3",
  111. "pm2": "2.7.1",
  112. "pug": "2.0.0-rc.4",
  113. "qr-image": "3.2.0",
  114. "read-chunk": "2.1.0",
  115. "remove-markdown": "0.2.2",
  116. "request": "2.83.0",
  117. "semver": "5.4.1",
  118. "sequelize": "4.13.5",
  119. "serve-favicon": "2.4.5",
  120. "simplemde": "1.11.2",
  121. "stream-to-promise": "2.2.0",
  122. "tar": "4.0.1",
  123. "through2": "2.0.3",
  124. "validator": "9.0.0",
  125. "validator-as-promised": "1.0.2",
  126. "winston": "2.4.0",
  127. "yargs": "9.0.1"
  128. },
  129. "devDependencies": {
  130. "@glimpse/glimpse": "0.22.15",
  131. "@panter/vue-i18next": "0.6.1",
  132. "apollo-client": "^1.9.3",
  133. "autoprefixer": "7.1.5",
  134. "babel-cli": "6.26.0",
  135. "babel-core": "6.26.0",
  136. "babel-jest": "21.2.0",
  137. "babel-preset-env": "1.6.0",
  138. "babel-preset-es2015": "6.24.1",
  139. "babel-preset-stage-2": "6.24.1",
  140. "brace": "0.10.0",
  141. "colors": "1.1.2",
  142. "consolidate": "0.14.5",
  143. "eslint": "4.8.0",
  144. "eslint-config-requarks": "1.0.7",
  145. "eslint-config-standard": "10.2.1",
  146. "eslint-plugin-import": "2.7.0",
  147. "eslint-plugin-node": "5.2.0",
  148. "eslint-plugin-promise": "3.5.0",
  149. "eslint-plugin-standard": "3.0.1",
  150. "fuse-box": "2.3.3",
  151. "graphql-tag": "^2.4.2",
  152. "i18next-xhr-backend": "1.4.3",
  153. "jest": "21.2.1",
  154. "jquery": "3.2.1",
  155. "jquery-contextmenu": "2.6.2",
  156. "jquery-simple-upload": "1.0.0",
  157. "js-cookie": "2.1.4",
  158. "node-sass": "4.5.3",
  159. "nodemon": "1.12.1",
  160. "postcss-selector-parser": "2.2.3",
  161. "pug-lint": "2.5.0",
  162. "twemoji-awesome": "1.0.6",
  163. "typescript": "2.5.3",
  164. "uglify-es": "3.1.3",
  165. "vee-validate": "2.0.0-rc.18",
  166. "vue": "2.4.4",
  167. "vue-clipboards": "1.1.0",
  168. "vue-hot-reload-api": "2.1.1",
  169. "vue-lodash": "1.0.4",
  170. "vue-material": "^0.7.5",
  171. "vue-resource": "1.3.4",
  172. "vue-simple-breakpoints": "1.0.2",
  173. "vue-template-compiler": "2.4.4",
  174. "vue-template-es2015-compiler": "1.5.3",
  175. "vuex": "2.4.1",
  176. "vuex-persistedstate": "2.0.0"
  177. },
  178. "jest": {
  179. "testResultsProcessor": "./node_modules/jest-junit",
  180. "collectCoverage": false,
  181. "testMatch": [
  182. "**/test/**/*.js?(x)",
  183. "**/?(*.)(spec|test).js?(x)"
  184. ],
  185. "verbose": true
  186. },
  187. "jest-junit": {
  188. "suiteName": "jest test",
  189. "output": "./test-results/junit.xml",
  190. "classNameTemplate": "{classname}-{title}",
  191. "titleTemplate": "{classname}-{title}"
  192. },
  193. "collective": {
  194. "type": "opencollective",
  195. "url": "https://opencollective.com/wikijs",
  196. "logo": "https://opencollective.com/opencollective/logo.txt"
  197. }
  198. }