package.json 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. {
  2. "name": "crowi-plus",
  3. "version": "1.1.0-RC1",
  4. "description": "Enhanced Crowi",
  5. "tags": [
  6. "wiki",
  7. "communication",
  8. "documentation",
  9. "collaboration"
  10. ],
  11. "author": "Yuki Takei <yuki@weseek.co.jp>",
  12. "contributors": [],
  13. "license": "MIT",
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/weseek/crowi-plus.git"
  17. },
  18. "bugs": {
  19. "url": "https://github.com/weseek/crowi-plus/issues"
  20. },
  21. "scripts": {
  22. "build:dev:watch": "npm run build:dev -- --watch",
  23. "build:dev": "npm run clean:js && webpack --config config/webpack.dev.js --progress --profile",
  24. "build:prod": "npm run clean && webpack --config config/webpack.prod.js --progress --profile --bail",
  25. "build": "npm run build:dev",
  26. "clean:js": "rimraf -- public/js",
  27. "clean:dll": "rimraf -- public/dll",
  28. "clean": "npm run clean:js && npm run clean:dll",
  29. "heroku-postbuild": "sh bin/heroku/install-plugins.sh && npm run build:prod",
  30. "mkdirp": "mkdirp",
  31. "plugin:def": "node bin/generate-plugin-definitions-source.js",
  32. "prebuild:dev": "env-cmd config/env.dev.js npm run plugin:def",
  33. "prebuild:prod": "npm run plugin:def",
  34. "prestart": "npm run build:prod",
  35. "server:dev:watch": "env-cmd config/env.dev.js node-dev app.js --watch",
  36. "server:dev": "env-cmd config/env.dev.js node app.js",
  37. "server:prod:container": "node app.js --production --container",
  38. "server:prod:onpremise": "mkdirp logs && node app.js --production --onpremise",
  39. "server:prod": "npm run server:prod:onpremise",
  40. "server": "npm run server:dev:watch",
  41. "start": "npm run server:prod",
  42. "test": "mocha -r test/bootstrap.js test/**/*.js",
  43. "version": "node -p \"require('./package.json').version\"",
  44. "webpack": "webpack"
  45. },
  46. "dependencies": {
  47. "assets-webpack-plugin": "~3.5.1",
  48. "async": "^2.3.0",
  49. "aws-sdk": "~2.2.26",
  50. "axios": "^0.16.1",
  51. "babel-core": "^6.24.0",
  52. "babel-loader": "^6.4.1",
  53. "babel-preset-es2015": "^6.24.0",
  54. "babel-preset-react": "^6.23.0",
  55. "basic-auth-connect": "~1.0.0",
  56. "body-parser": "^1.17.1",
  57. "bootstrap-sass": "~3.3.6",
  58. "botkit": "~0.1.1",
  59. "cli": "~1.0.1",
  60. "colors": "^1.1.2",
  61. "commander": "~2.9.0",
  62. "connect-flash": "~0.1.1",
  63. "connect-redis": "~2.1.0",
  64. "consolidate": "~0.14.0",
  65. "cookie-parser": "^1.4.3",
  66. "copy-webpack-plugin": "^4.0.0",
  67. "crowi-pluginkit": "^1.1.0",
  68. "csrf": "~3.0.3",
  69. "css-loader": "^0.28.0",
  70. "debug": "~2.6.0",
  71. "diff": "^3.2.0",
  72. "diff2html": "^2.3.0",
  73. "elasticsearch": "^12.1.3",
  74. "emojify.js": "^1.1.0",
  75. "env-cmd": "^5.0.0",
  76. "errorhandler": "^1.5.0",
  77. "express": "~4.15.2",
  78. "express-form": "~0.12.0",
  79. "express-session": "~1.15.0",
  80. "express-webpack-assets": "0.0.2",
  81. "file-loader": "^0.11.1",
  82. "googleapis": "=12.3.0",
  83. "graceful-fs": "^4.1.11",
  84. "highlight.js": "^9.10.0",
  85. "i18next": "~4.1.0",
  86. "i18next-express-middleware": "~1.0.2",
  87. "i18next-node-fs-backend": "~0.1.3",
  88. "i18next-sprintf-postprocessor": "~0.2.2",
  89. "inline-attachment": "git+https://github.com/Rovak/InlineAttachment.git#2.0.3",
  90. "jquery.cookie": "~1.4.1",
  91. "marked": "~0.3.6",
  92. "md5": "^2.2.1",
  93. "method-override": "~2.3.1",
  94. "mkdirp": "~0.5.1",
  95. "moment": "^2.18.0",
  96. "mongoose": "^4.9.4",
  97. "mongoose-paginate": "5.0.x",
  98. "morgan": "^1.8.0",
  99. "multer": "~1.3.0",
  100. "node-sass": "^4.5.0",
  101. "nodemailer": "~2.7.0",
  102. "nodemailer-ses-transport": "~1.5.0",
  103. "normalize-path": "^2.1.1",
  104. "optimize-js-plugin": "0.0.4",
  105. "react": "^15.4.2",
  106. "react-clipboard.js": "^1.0.1",
  107. "react-dom": "^15.4.2",
  108. "redis": "^2.7.1",
  109. "reveal.js": "~3.4.0",
  110. "rimraf": "^2.6.1",
  111. "sass-loader": "^6.0.3",
  112. "socket.io": "~1.7.0",
  113. "socket.io-client": "~1.7.0",
  114. "style-loader": "^0.16.1",
  115. "swig": "~1.4.0",
  116. "uglifycss": "^0.0.25",
  117. "webpack": "~2.3.1",
  118. "webpack-dll-bundles-plugin": "^1.0.0-beta.5",
  119. "webpack-merge": "~3.0.0"
  120. },
  121. "devDependencies": {
  122. "chai": "^3.5.0",
  123. "concurrently": "^3.4.0",
  124. "easy-livereload": "^1.2.0",
  125. "mocha": "^3.2.0",
  126. "node-dev": "^3.1.3",
  127. "proxyquire": "^1.7.11",
  128. "sinon": "^2.1.0",
  129. "sinon-chai": "^2.9.0"
  130. },
  131. "engines": {
  132. "node": "6.x",
  133. "npm": "4.x"
  134. },
  135. "config": {
  136. "blanket": {
  137. "pattern": "./lib/**/*.js"
  138. }
  139. }
  140. }