package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "notifications",
  3. "version": "2.3.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 js-src/webpack.dev.js",
  12. "watch": "webpack --progress --watch --config js-src/webpack.dev.js",
  13. "build": "webpack --progress --hide-modules --config js-src/webpack.prod.js",
  14. "test": "echo \"Error: no test specified\" && exit 1"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/nextcloud/notifications.git"
  19. },
  20. "author": "Joas Schilling",
  21. "license": "AGPL-3.0",
  22. "bugs": {
  23. "url": "https://github.com/nextcloud/notifications/issues"
  24. },
  25. "homepage": "https://github.com/nextcloud/notifications#readme",
  26. "dependencies": {
  27. "vue": "^2.5.16",
  28. "vue-select": "^2.4.0"
  29. },
  30. "devDependencies": {
  31. "css-loader": "^0.28.11",
  32. "file-loader": "^1.1.11",
  33. "vue-loader": "^15.2.4",
  34. "vue-template-compiler": "^2.5.16",
  35. "webpack": "^4.11.1",
  36. "webpack-cli": "^3.0.3",
  37. "webpack-merge": "^4.1.2"
  38. }
  39. }