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.

package.json 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "notifications",
  3. "version": "2.4.0",
  4. "description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
  5. "main": "init.js",
  6. "directories": {
  7. "lib": "lib",
  8. "test": "tests"
  9. },
  10. "scripts": {
  11. "dev": "webpack --config webpack.dev.js",
  12. "watch": "webpack --progress --watch --config webpack.dev.js",
  13. "build": "webpack --progress --hide-modules --config webpack.prod.js"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/nextcloud/notifications.git"
  18. },
  19. "author": "Joas Schilling",
  20. "license": "AGPL-3.0",
  21. "bugs": {
  22. "url": "https://github.com/nextcloud/notifications/issues"
  23. },
  24. "homepage": "https://github.com/nextcloud/notifications#readme",
  25. "dependencies": {
  26. "nextcloud-vue": "^0.5.0",
  27. "v-tooltip": "^2.0.0-rc.33",
  28. "vue": "^2.5.22",
  29. "vue-click-outside": "^1.0.7"
  30. },
  31. "devDependencies": {
  32. "@babel/core": "^7.2.2",
  33. "@babel/preset-env": "^7.2.3",
  34. "babel-loader": "^8.0.5",
  35. "css-loader": "^2.1.0",
  36. "file-loader": "^3.0.1",
  37. "node-sass": "^4.11.0",
  38. "sass-loader": "^7.1.0",
  39. "style-loader": "^0.23.1",
  40. "vue-loader": "^15.5.1",
  41. "vue-template-compiler": "^2.5.22",
  42. "webpack": "^4.28.4",
  43. "webpack-cli": "^3.2.1",
  44. "webpack-merge": "^4.2.1"
  45. }
  46. }