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

github.com/nextcloud/files_retention.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'package.json')
-rw-r--r--package.json42
1 files changed, 42 insertions, 0 deletions
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..1027471
--- /dev/null
+++ b/package.json
@@ -0,0 +1,42 @@
+{
+ "name": "files_retention",
+ "version": "1.0.0",
+ "author": "Joas Schilling <coding@schilljs.com>",
+ "license": "agpl",
+ "private": true,
+ "scripts": {
+ "build": "NODE_ENV=production webpack --progress",
+ "dev": "NODE_ENV=development webpack --progress",
+ "watch": "NODE_ENV=development webpack --progress --watch",
+ "lint": "eslint --ext .js,.vue src",
+ "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"
+ },
+ "dependencies": {
+ "@nextcloud/auth": "^2.0.0",
+ "@nextcloud/axios": "^2.1.0",
+ "@nextcloud/dialogs": "^3.2.0",
+ "@nextcloud/initial-state": "^2.0.0",
+ "@nextcloud/router": "^2.0.0",
+ "@nextcloud/vue": "^7.0.1",
+ "vue": "^2.7.13",
+ "vue-material-design-icons": "^5.1.2",
+ "vuex": "^3.6.2"
+ },
+ "engines": {
+ "node": "^16.0.0",
+ "npm": "^7.0.0 || ^8.0.0"
+ },
+ "browserslist": [
+ "extends @nextcloud/browserslist-config"
+ ],
+ "devDependencies": {
+ "@nextcloud/babel-config": "^1.0.0",
+ "@nextcloud/browserslist-config": "^2.3.0",
+ "@nextcloud/eslint-config": "^8.1.2",
+ "@nextcloud/stylelint-config": "^2.3.0",
+ "@nextcloud/webpack-vue-config": "^5.3.0",
+ "vue-template-compiler": "^2.7.13"
+ }
+}