summaryrefslogtreecommitdiffstats
path: root/package.json
blob: d1827f6041e0823afb6b5f8cb9aa54d57bdb0435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
	"name": "contacts",
	"description": "A contacts app for Nextcloud. Easily sync contacts from various devices, share and edit them online.",
	"version": "4.0.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.3",
		"b64-to-blob": "^1.2.19",
		"camelcase": "^6.2.0",
		"cdav-library": "git+https://github.com/nextcloud/cdav-library.git",
		"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",
		"string-natural-compare": "^3.0.1",
		"uuid": "^8.3.2",
		"vue": "^2.6.14",
		"vue-click-outside": "^1.1.0",
		"vue-clipboard2": "^0.3.1",
		"vue-masonry": "^0.13.0",
		"vue-material-design-icons": "^4.12.1",
		"vue-router": "^3.5.2",
		"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": ">=14.0.0",
		"npm": ">=7.0.0"
	},
	"devDependencies": {
		"@nextcloud/babel-config": "^1.0.0-beta.1",
		"@nextcloud/browserslist-config": "^2.1.0",
		"@nextcloud/eslint-config": "^5.1.0",
		"@nextcloud/stylelint-config": "^1.0.0-beta.0",
		"@nextcloud/typings": "^1.2.1",
		"@nextcloud/webpack-vue-config": "^4.0.3",
		"@typescript-eslint/parser": "^4.28.3",
		"eslint-import-resolver-typescript": "^2.4.0",
		"ts-loader": "^9.2.3",
		"typescript": "^4.3.5"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	]
}