contacts/package.json

123 lines
3.7 KiB
JSON

{
"name": "contacts",
"description": "A contacts app for Nextcloud. Easily sync contacts from various devices, share and edit them online.",
"version": "4.0.0-beta.0",
"author": "John Molakvoæ <skjnldsv@protonmail.com>",
"contributors": [
"John Molakvoæ <skjnldsv@protonmail.com>",
"Team Popcorn <teampopcornberlin@gmail.com>"
],
"keywords": [
"nextcloud",
"contacts",
"vcard",
"carddav"
],
"bugs": {
"url": "https://github.com/nextcloud/contacts/issues"
},
"repository": {
"url": "https://github.com/nextcloud/contacts",
"type": "git"
},
"homepage": "https://github.com/nextcloud/contacts",
"license": "agpl",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix"
},
"dependencies": {
"@mattkrick/sanitize-svg": "^0.3.1",
"@nextcloud/auth": "^1.3.0",
"@nextcloud/axios": "^1.6.0",
"@nextcloud/capabilities": "^1.0.4",
"@nextcloud/dialogs": "^3.1.2",
"@nextcloud/event-bus": "^2.0.0",
"@nextcloud/initial-state": "^1.2.0",
"@nextcloud/l10n": "^1.4.1",
"@nextcloud/logger": "^2.0.0",
"@nextcloud/moment": "^1.1.1",
"@nextcloud/paths": "^2.0.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^4.0.0-alpha.4",
"b64-to-blob": "^1.2.19",
"camelcase": "^6.2.0",
"cdav-library": "git+https://github.com/nextcloud/cdav-library.git",
"core-js": "^3.13.0",
"debounce": "^1.2.1",
"downloadjs": "^1.4.7",
"ical.js": "^1.4.0",
"moment": "^2.29.1",
"p-limit": "^3.1.0",
"p-queue": "^6.6.2",
"qr-image": "^3.2.0",
"regenerator-runtime": "^0.13.7",
"string-natural-compare": "^3.0.1",
"uuid": "^8.3.2",
"vue": "^2.6.12",
"vue-click-outside": "^1.1.0",
"vue-clipboard2": "^0.3.1",
"vue-masonry": "^0.13.0",
"vue-material-design-icons": "^4.11.0",
"vue-router": "^3.5.1",
"vue-virtual-scroll-list": "^2.3.2",
"vue-virtual-scroller": "^1.0.10",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/plugin-proposal-object-rest-spread": "^7.14.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.14.4",
"@nextcloud/babel-config": "^1.0.0-beta.1",
"@nextcloud/browserslist-config": "^2.1.0",
"@nextcloud/eslint-config": "^5.1.0",
"@nextcloud/eslint-plugin": "^2.0.0",
"@nextcloud/typings": "^1.0.0",
"@nextcloud/webpack-vue-config": "^4.0.3",
"@typescript-eslint/parser": "^4.26.0",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.2",
"css-loader": "^4.3.0",
"eslint": "^7.27.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-vue": "^7.10.0",
"eslint-webpack-plugin": "^2.5.4",
"file-loader": "^6.2.0",
"node-polyfill-webpack-plugin": "^1.1.2",
"sass": "^1.34.0",
"sass-loader": "^10.1.1",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-scss": "^3.19.0",
"stylelint-webpack-plugin": "^2.1.1",
"ts-loader": "^9.2.2",
"typescript": "^4.3.2",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.7",
"vue-template-compiler": "^2.6.12",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}