summaryrefslogtreecommitdiffstats
path: root/apps/updatenotification/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'apps/updatenotification/package.json')
-rw-r--r--apps/updatenotification/package.json16
1 files changed, 9 insertions, 7 deletions
diff --git a/apps/updatenotification/package.json b/apps/updatenotification/package.json
index d7ff8a29fbc..b9d8f38e631 100644
--- a/apps/updatenotification/package.json
+++ b/apps/updatenotification/package.json
@@ -1,6 +1,6 @@
{
"name": "notifications",
- "version": "2.2.0",
+ "version": "2.3.0",
"description": "This app provides a backend and frontend for the notification API available in Nextcloud.",
"main": "init.js",
"directories": {
@@ -8,8 +8,9 @@
"test": "tests"
},
"scripts": {
- "dev": "cross-env NODE_ENV=development webpack --progress --hot --config js-src/webpack.config.js --watch",
- "build": "cross-env NODE_ENV=production webpack --progress --hide-modules --config js-src/webpack.config.js",
+ "dev": "webpack --config js-src/webpack.dev.js",
+ "watch": "webpack --progress --watch --config js-src/webpack.dev.js",
+ "build": "webpack --progress --hide-modules --config js-src/webpack.prod.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
@@ -27,11 +28,12 @@
"vue-select": "^2.4.0"
},
"devDependencies": {
- "cross-env": "^5.1.6",
"css-loader": "^0.28.11",
- "file-loader": "^1.1.6",
- "vue-loader": "^13.7.0",
+ "file-loader": "^1.1.11",
+ "vue-loader": "^15.2.4",
"vue-template-compiler": "^2.5.16",
- "webpack": "^3.6.0"
+ "webpack": "^4.11.1",
+ "webpack-cli": "^3.0.3",
+ "webpack-merge": "^4.1.2"
}
}