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 833B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "oauth2",
  3. "version": "1.1.0",
  4. "description": "OAuth2 setup",
  5. "author": "Roeland Jago Douma <roeland@famdouma.nl>",
  6. "license": "AGPL-3.0-or-later",
  7. "main": "init.js",
  8. "directories": {
  9. "lib": "lib",
  10. "test": "tests"
  11. },
  12. "scripts": {
  13. "dev": "webpack --config webpack.dev.js",
  14. "watch": "webpack --progress --watch --config webpack.dev.js",
  15. "build": "webpack --progress --hide-modules --config webpack.prod.js",
  16. "test": "echo \"Error: no test specified\" && exit 1"
  17. },
  18. "dependencies": {
  19. "nextcloud-axios": "^0.1.3",
  20. "vue": "^2.6.2"
  21. },
  22. "devDependencies": {
  23. "css-loader": "^2.1.0",
  24. "file-loader": "^3.0.1",
  25. "vue-loader": "^15.6.2",
  26. "vue-template-compiler": "^2.6.2",
  27. "webpack": "^4.29.2",
  28. "webpack-cli": "^3.2.3",
  29. "webpack-merge": "^4.2.1"
  30. }
  31. }