summaryrefslogtreecommitdiffstats
path: root/package.json
blob: fc871909369896e664abce2bef5e6a276760ce1b (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
	"name": "contacts",
	"description": "A contacts app for Nextcloud. Easily sync contacts from various devices, share and edit them online.",
	"version": "3.4.1",
	"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.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.4.0",
		"@nextcloud/dialogs": "^3.0.0",
		"@nextcloud/initial-state": "^1.2.0",
		"@nextcloud/l10n": "^1.4.1",
		"@nextcloud/paths": "^1.1.2",
		"@nextcloud/router": "^1.2.0",
		"@nextcloud/vue": "^3.0.0",
		"axios": "^0.20.0",
		"b64-to-blob": "^1.2.19",
		"cdav-library": "git+https://github.com/nextcloud/cdav-library.git",
		"core-js": "^3.6.5",
		"debounce": "^1.2.0",
		"downloadjs": "^1.4.7",
		"ical.js": "^1.4.0",
		"moment": "^2.29.1",
		"p-limit": "^3.0.2",
		"p-queue": "^6.6.2",
		"qr-image": "^3.2.0",
		"regenerator-runtime": "^0.13.7",
		"string-natural-compare": "^3.0.1",
		"uuid": "^8.3.1",
		"vue": "^2.6.12",
		"vue-click-outside": "^1.1.0",
		"vue-clipboard2": "^0.3.1",
		"vue-masonry": "^0.11.8",
		"vue-router": "^3.4.7",
		"vue-virtual-scroll-list": "^2.3.1",
		"vue-virtual-scroller": "^1.0.10",
		"vuex": "^3.4.0",
		"vuex-router-sync": "^5.0.0"
	},
	"engines": {
		"node": ">=10.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.12.3",
		"@babel/plugin-proposal-object-rest-spread": "^7.12.1",
		"@babel/plugin-syntax-dynamic-import": "^7.8.3",
		"@babel/preset-env": "^7.12.1",
		"@nextcloud/browserslist-config": "^1.0.0",
		"@nextcloud/eslint-config": "^2.2.0",
		"@nextcloud/eslint-plugin": "^1.5.0",
		"@nextcloud/webpack-vue-config": "^1.2.0",
		"babel-eslint": "^10.1.0",
		"babel-loader": "^8.1.0",
		"css-loader": "^3.6.0",
		"eslint": "^6.8.0",
		"eslint-config-standard": "^14.1.1",
		"eslint-loader": "^4.0.2",
		"eslint-plugin-import": "^2.22.1",
		"eslint-plugin-node": "^11.1.0",
		"eslint-plugin-promise": "^4.2.1",
		"eslint-plugin-standard": "^4.0.1",
		"eslint-plugin-vue": "^6.2.2",
		"file-loader": "^6.1.1",
		"node-sass": "^4.14.1",
		"sass-loader": "^8.0.2",
		"stylelint": "^13.7.2",
		"stylelint-config-recommended-scss": "^4.2.0",
		"stylelint-scss": "^3.18.0",
		"stylelint-webpack-plugin": "^2.1.1",
		"url-loader": "^4.1.1",
		"vue-loader": "^15.9.3",
		"vue-template-compiler": "^2.6.12",
		"webpack": "^4.44.2",
		"webpack-cli": "^3.3.12",
		"webpack-node-externals": "^2.5.2"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	]
}