summaryrefslogtreecommitdiffstats
path: root/package.json
blob: 842fdac2b5a674e408be9687f85a7a83fa3a5113 (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
{
	"name": "contacts",
	"description": "A contacts app for Nextcloud. Easily sync contacts from various devices, share and edit them online.",
	"version": "3.0.2",
	"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": {
		"dev": "webpack --config webpack.dev.js",
		"watch": "webpack --progress --watch --config webpack.dev.js",
		"build": "webpack --progress --hide-modules --config webpack.prod.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": {
		"cdav-library": "github:nextcloud/cdav-library",
		"debounce": "^1.2.0",
		"downloadjs": "^1.4.7",
		"ical.js": "^1.3.0",
		"moment": "^2.24.0",
		"nextcloud-server": "^0.15.9",
		"nextcloud-vue": "^0.6.1",
		"p-limit": "^2.1.0",
		"p-queue": "^3.0.0",
		"uuid": "^3.3.2",
		"v-tooltip": "^2.0.0-rc.33",
		"vue": "^2.5.22",
		"vue-click-outside": "^1.0.7",
		"vue-clipboard2": "^0.2.1",
		"vue-router": "^3.0.2",
		"vuex": "^3.1.0",
		"vuex-router-sync": "^5.0.0"
	},
	"browserslist": [
		"last 2 versions",
		"ie >= 11"
	],
	"engines": {
		"node": ">=10.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.2.2",
		"@babel/plugin-syntax-dynamic-import": "^7.2.0",
		"@babel/preset-env": "^7.3.1",
		"@vue/test-utils": "^1.0.0-beta.28",
		"babel-eslint": "^10.0.1",
		"babel-loader": "^8.0.5",
		"chai": "^4.2.0",
		"css-loader": "^2.1.0",
		"eslint": "^5.12.1",
		"eslint-config-standard": "^12.0.0",
		"eslint-import-resolver-webpack": "^0.11.0",
		"eslint-loader": "^2.1.1",
		"eslint-plugin-import": "^2.15.0",
		"eslint-plugin-node": "^8.0.1",
		"eslint-plugin-promise": "^4.0.1",
		"eslint-plugin-standard": "^4.0.0",
		"eslint-plugin-vue": "^5.1.0",
		"file-loader": "^3.0.1",
		"jsdom": "^13.2.0",
		"jsdom-global": "^3.0.2",
		"mocha": "^5.2.0",
		"mocha-webpack": "^2.0.0-beta.0",
		"node-sass": "^4.11.0",
		"sass-loader": "^7.1.0",
		"stylelint": "^8.4.0",
		"stylelint-config-recommended-scss": "^3.2.0",
		"stylelint-scss": "^3.5.1",
		"stylelint-webpack-plugin": "^0.10.5",
		"vue-loader": "^15.6.1",
		"vue-template-compiler": "^2.5.22",
		"webpack": "^4.29.0",
		"webpack-cli": "^3.2.1",
		"webpack-merge": "^4.2.1",
		"webpack-node-externals": "^1.7.2"
	}
}