diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2019-05-23 17:03:04 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2019-10-29 12:56:00 +0100 |
commit | fd90af50d910e659aa8df0d380424383c6c09620 (patch) | |
tree | 76d8ddcc7cf44ba6852f31b0a2323d23d6b1c258 /package.json | |
parent | ea6f423e2c8e50cf1357a0e2182dc4c9a9bf981e (diff) | |
download | nextcloud-server-fd90af50d910e659aa8df0d380424383c6c09620.tar.gz nextcloud-server-fd90af50d910e659aa8df0d380424383c6c09620.zip |
Add OCA.Files.Sidebar
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/package.json b/package.json index 2a8f7d9e95d..cd8be3d6d53 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "dependencies": { "@babel/polyfill": "^7.6.0", "@chenfengyuan/vue-qrcode": "^1.0.1", + "@nextcloud/auth": "^0.3.1", "@nextcloud/axios": "^0.5.0", "@nextcloud/event-bus": "^0.2.1", "@nextcloud/initial-state": "^0.2.0", @@ -37,6 +38,7 @@ "clipboard": "^2.0.4", "css-vars-ponyfill": "^2.1.2", "davclient.js": "git+https://github.com/owncloud/davclient.js.git#0.2.1", + "debounce": "^1.2.0", "dompurify": "^2.0.7", "escape-html": "^1.0.3", "handlebars": "^4.4.5", @@ -53,12 +55,14 @@ "nextcloud-router": "0.0.9", "nextcloud-vue": "^0.12.7", "nextcloud-vue-collections": "^0.6.0", + "p-queue": "^6.1.0", "query-string": "^5.1.1", "select2": "3.5.1", "snap.js": "^2.0.9", "strengthify": "git+https://github.com/MorrisJobke/strengthify.git#0.5.8", "toastify-js": "^1.6.1", "underscore": "^1.9.1", + "url-search-params-polyfill": "^7.0.0", "v-tooltip": "^2.0.2", "vue": "^2.6.10", "vue-click-outside": "^1.0.7", @@ -72,6 +76,7 @@ }, "devDependencies": { "@babel/core": "^7.6.4", + "@babel/plugin-proposal-class-properties": "^7.5.5", "@babel/plugin-syntax-dynamic-import": "^7.2.0", "@babel/preset-env": "^7.6.3", "@nextcloud/browserslist-config": "^1.0.0", @@ -104,5 +109,8 @@ }, "browserslist": [ "extends @nextcloud/browserslist-config" - ] + ], + "engines": { + "node": ">=10.0.0" + } } |