nextcloud-contacts/package.json

109 lines
3.3 KiB
JSON

{
"name": "contacts",
"description": "A contacts app for Nextcloud. Easily sync contacts from various devices, share and edit them online.",
"version": "3.1.4",
"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 --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 tests",
"lint:fix": "eslint --ext .js,.vue src tests --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "mocha-webpack --webpack-config webpack.test.js --interactive false --require tests/setup.js \"tests/js/**/*.spec.js\"",
"test:watch": "mocha-webpack -w --webpack-config webpack.test.js --interactive false --require tests/setup.js \"tests/js/**/*.spec.js\""
},
"dependencies": {
"axios": "^0.19.0",
"cdav-library": "github:nextcloud/cdav-library",
"core-js": "^3.2.1",
"debounce": "^1.2.0",
"downloadjs": "^1.4.7",
"ical.js": "^1.3.0",
"moment": "^2.24.0",
"nextcloud-auth": "0.0.3",
"nextcloud-dialogs": "0.0.3",
"nextcloud-l10n": "0.1.0",
"nextcloud-router": "0.0.9",
"nextcloud-vue": "^0.12.3",
"p-limit": "^2.2.1",
"p-queue": "^6.1.1",
"qr-image": "^3.2.0",
"uuid": "^3.3.3",
"vue": "^2.6.10",
"vue-click-outside": "^1.0.7",
"vue-clipboard2": "^0.3.1",
"vue-router": "^3.1.3",
"vue-virtual-scroller": "^1.0.0-rc.2",
"vuex": "^3.1.1",
"vuex-router-sync": "^5.0.0"
},
"browserslist": [
"last 2 versions",
"ie >= 11"
],
"engines": {
"node": ">=10.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.5.5",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"chai": "^4.2.0",
"css-loader": "^3.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-nextcloud": "^0.3.0",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.2.0",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.3.1",
"stylelint": "^8.4.0",
"stylelint-config-recommended-scss": "^3.3.0",
"stylelint-scss": "^3.10.1",
"stylelint-webpack-plugin": "^0.10.5",
"url-loader": "^2.1.0",
"vue-loader": "^15.7.1",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.8",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
}
}