package.json 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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": "webpack --progress --hide-modules --config webpack.prod.js",
  12. "dev": "webpack --progress --watch --config webpack.dev.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/nextcloud/server.git"
  17. },
  18. "keywords": [
  19. "nextcloud"
  20. ],
  21. "license": "AGPL-3.0-or-later",
  22. "dependencies": {
  23. "@babel/polyfill": "^7.2.5",
  24. "Select2": "git+https://github.com/select2/select2.git#3.4.8",
  25. "autosize": "^4.0.2",
  26. "backbone": "^1.3.3",
  27. "blueimp-md5": "^2.10.0",
  28. "bootstrap": "^3.4.0",
  29. "clipboard": "^2.0.4",
  30. "css-vars-ponyfill": "^1.16.4",
  31. "davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.1.3",
  32. "dompurify": "^1.0.9",
  33. "handlebars": "^4.1.0",
  34. "jcrop": "git+https://github.com/ChristophWurst/Jcrop.git#v0.9.12-npm",
  35. "jquery": "^2.1.4",
  36. "jquery-migrate": "^1.4.1",
  37. "jquery-ui-dist": "^1.12.1",
  38. "jstimezonedetect": "^1.0.6",
  39. "marked": "^0.6.0",
  40. "moment": "^2.24.0",
  41. "snap.js": "^2.0.9",
  42. "strengthify": "git+https://github.com/MorrisJobke/strengthify.git",
  43. "underscore": "^1.9.1"
  44. },
  45. "devDependencies": {
  46. "@babel/core": "^7.2.2",
  47. "@babel/plugin-syntax-dynamic-import": "^7.2.0",
  48. "@babel/preset-env": "^7.3.1",
  49. "babel-loader": "^8.0.5",
  50. "css-loader": "^2.1.0",
  51. "exports-loader": "^0.7.0",
  52. "handlebars-loader": "^1.7.1",
  53. "node-sass": "^4.11.0",
  54. "sass-loader": "^7.1.0",
  55. "style-loader": "^0.23.1",
  56. "url-loader": "^1.1.2",
  57. "webpack": "^4.29.3",
  58. "webpack-cli": "^3.2.3",
  59. "webpack-merge": "^4.2.1"
  60. }
  61. }