Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-09-21 12:39:25 +0300
committerJoas Schilling <coding@schilljs.com>2021-09-21 12:39:25 +0300
commit81dec20d74aebc4664add55145ed0233bba4c899 (patch)
treee549b2d75c3fdadc4c0ee58597743e7a55608f8f /package.json
parentcff4b0aac0fd07fac810275558eb54fd8151c234 (diff)
Group npm scripts by topic
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'package.json')
-rw-r--r--package.json6
1 files changed, 3 insertions, 3 deletions
diff --git a/package.json b/package.json
index ad6c02718..54d61914f 100644
--- a/package.json
+++ b/package.json
@@ -6,15 +6,15 @@
"author": "Joas Schilling <coding@schilljs.com>",
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
+ "dev": "NODE_ENV=development webpack --config webpack.js",
+ "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"test:unit": "TZ=UTC vue-cli-service test:unit",
"test:coverage": "TZ=UTC vue-cli-service test:unit --coverage",
"test:watch": "TZ=UTC vue-cli-service test:unit --watchAll",
"lint": "eslint --ext .js,.vue src",
- "dev": "NODE_ENV=development webpack --config webpack.js",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
- "stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix",
- "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js"
+ "stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix"
},
"dependencies": {
"@juliushaertl/vue-richtext": "^0.3.3",