guests/package.json

78 строки
2.4 KiB
JSON

{
"name": "guests",
"description": "Create guest users which can only see files shared with them",
"version": "1.4.0",
"author": "Robin Appelman <robin@icewind.nl>",
"contributors": [
"Robin Appelman <robin@icewind.nl>",
"John Molakvoæ <skjnldsv@protonmail.com>"
],
"keywords": [
"nextcloud",
"guests",
"app",
"vuejs"
],
"bugs": {
"url": "https://github.com/nextcloud/guests/issues"
},
"repository": {
"url": "https://github.com/nextcloud/guests",
"type": "git"
},
"homepage": "https://github.com/nextcloud/guests",
"license": "agpl",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --hide-modules --config webpack.prod.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.dev.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@nextcloud/browserslist-config": "^1.0.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-nextcloud": "0.1.1",
"eslint-config-standard": "^14.1.0",
"eslint-import-resolver-webpack": "^0.12.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-nextcloud": "^0.3.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.1.2",
"node-sass": "^4.13.1",
"sass-loader": "^8.0.2",
"style-loader": "^1.1.3",
"stylelint": "^13.0.0",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.14.2",
"stylelint-webpack-plugin": "^1.2.1",
"vue-loader": "^15.8.3",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@nextcloud/axios": "^1.3.1",
"@nextcloud/router": "^1.0.0",
"@nextcloud/vue": "^1.3.0",
"deep-equal": "^2.0.1",
"email-validator": "^2.0.4",
"vue": "^2.6.11"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}