1
0

package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "name": "nextcloud",
  3. "version": "0.1.0",
  4. "description": "Nextcloud Server",
  5. "private": true,
  6. "directories": {
  7. "lib": "lib",
  8. "test": "tests"
  9. },
  10. "scripts": {
  11. "build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
  12. "dev": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
  13. "watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/nextcloud/server.git"
  18. },
  19. "keywords": [
  20. "nextcloud"
  21. ],
  22. "license": "AGPL-3.0-or-later",
  23. "dependencies": {
  24. "@babel/polyfill": "^7.2.5",
  25. "Select2": "git+https://github.com/select2/select2.git#3.4.8",
  26. "autosize": "^4.0.2",
  27. "backbone": "^1.3.3",
  28. "blueimp-md5": "^2.10.0",
  29. "bootstrap": "^3.4.1",
  30. "clipboard": "^2.0.4",
  31. "css-vars-ponyfill": "^1.16.4",
  32. "davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.1.3",
  33. "dompurify": "^1.0.10",
  34. "handlebars": "^4.1.0",
  35. "jcrop": "git+https://github.com/ChristophWurst/Jcrop.git#v0.9.12-npm",
  36. "jquery": "^2.1.4",
  37. "jquery-migrate": "^1.4.1",
  38. "jquery-ui-dist": "^1.12.1",
  39. "jstimezonedetect": "^1.0.6",
  40. "lodash": "^4.17.11",
  41. "marked": "^0.6.1",
  42. "moment": "^2.24.0",
  43. "nextcloud-axios": "^0.1.3",
  44. "nextcloud-password-confirmation": "^0.4.1",
  45. "nextcloud-vue": "^0.6.3",
  46. "snap.js": "^2.0.9",
  47. "strengthify": "git+https://github.com/MorrisJobke/strengthify.git",
  48. "underscore": "^1.9.1",
  49. "v-tooltip": "^2.0.0-rc.33",
  50. "vue": "^2.6.6",
  51. "vue-click-outside": "^1.0.7",
  52. "vue-infinite-loading": "^2.4.3",
  53. "vue-localstorage": "^0.6.2",
  54. "vue-multiselect": "^2.1.3",
  55. "vue-router": "^3.0.2",
  56. "vuex": "^3.1.0",
  57. "vuex-router-sync": "^5.0.0"
  58. },
  59. "devDependencies": {
  60. "@babel/core": "^7.3.3",
  61. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  62. "@babel/preset-env": "^7.3.1",
  63. "babel-loader": "^8.0.5",
  64. "css-loader": "^2.1.0",
  65. "exports-loader": "^0.7.0",
  66. "file-loader": "^3.0.1",
  67. "handlebars-loader": "^1.7.1",
  68. "node-sass": "^4.11.0",
  69. "sass-loader": "^7.1.0",
  70. "style-loader": "^0.23.1",
  71. "url-loader": "^1.1.2",
  72. "vue-loader": "^15.6.2",
  73. "vue-template-compiler": "^2.6.6",
  74. "webpack": "^4.29.3",
  75. "webpack-cli": "^3.2.3",
  76. "webpack-merge": "^4.2.1"
  77. }
  78. }