Files
nextcloud-contacts/package.json
2025-07-08 16:00:21 +02:00

111 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": "7.3.0-dev.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,
"type": "module",
"scripts": {
"build": "vite build --mode production",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"lint": "eslint --ext .js,.ts,.vue src",
"lint:fix": "eslint --ext .js,.ts,.vue src --fix",
"stylelint": "stylelint \"src/**/*.scss\" \"src/**/*.vue\"",
"stylelint:fix": "stylelint \"src/**/*.scss\" \"src/**/*.vue\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@mattkrick/sanitize-svg": "^0.4.1",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.2",
"@nextcloud/axios": "^2.5.1",
"@nextcloud/capabilities": "^1.2.0",
"@nextcloud/cdav-library": "^2.1.0",
"@nextcloud/dialogs": "^5.3.8",
"@nextcloud/event-bus": "^3.3.2",
"@nextcloud/files": "^3.10.2",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "3.1.0",
"@nextcloud/logger": "^3.0.2",
"@nextcloud/moment": "^1.3.4",
"@nextcloud/paths": "^2.2.1",
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.2.4",
"@nextcloud/vue": "^8.27.0",
"@shortcm/qr-image": "^9.0.4",
"@vueuse/core": "^11.3.0",
"b64-to-blob": "^1.2.19",
"camelcase": "^8.0.0",
"d3": "^7.9.0",
"d3-org-chart": "^3.1.1",
"debounce": "^2.2.0",
"downloadjs": "^1.4.7",
"ical.js": "^2.2.0",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"p-limit": "^6.2.0",
"pinia": "^2.3.1",
"string-natural-compare": "^3.0.1",
"uuid": "^11.1.0",
"validator": "^13.15.15",
"vue": "~2.7.16",
"vue-click-outside": "^1.1.0",
"vue-cropperjs": "^4.2.0",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^3.6.5",
"vue-virtual-scroll-list": "^2.3.5",
"vue-virtual-scroller": "^1.1.2",
"vuex": "^3.6.2",
"vuex-router-sync": "^5.0.0"
},
"engines": {
"node": "^20.0.0",
"npm": "^9.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.1.0",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vite-config": "^1.5.6",
"@types/jest": "^29.5.14",
"@vue/vue2-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"eslint-import-resolver-typescript": "^3.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"ts-jest": "^29.4.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vite": "^5.4.19",
"vue-template-compiler": "~2.7.16"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}