summaryrefslogtreecommitdiffstats
path: root/package.json
blob: afc3c63ce34647d4c47cf1822b775222f2ec6d11 (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
{
	"name": "contacts",
	"description": "A contacts app for Nextcloud. Easily sync contacts from various devices, share and edit them online.",
	"version": "3.0.0",
	"author": "John Molakvoæ <skjnldsv@protonmail.com>",
	"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",
		"test": "jest",
		"test:coverage": "jest --coverage"
	},
	"dependencies": {
		"axios": "^0.18.0",
		"babel-polyfill": "^6.26.0",
		"cdav-library": "github:nextcloud/cdav-library#develop",
		"debounce": "^1.2.0",
		"ical.js": "^1.2.2",
		"uuid": "^3.3.2",
		"v-tooltip": "^2.0.0-rc.33",
		"vue": "^2.5.17",
		"vue-click-outside": "^1.0.7",
		"vue-multiselect": "^2.1.0",
		"vue-router": "^3.0.1",
		"vuex": "^3.0.1",
		"vuex-router-sync": "^5.0.0"
	},
	"browserslist": [
		"last 2 versions",
		"not ie <= 11"
	],
	"engines": {
		"node": ">=10.0.0"
	},
	"devDependencies": {
		"@vue/test-utils": "^1.0.0-beta.24",
		"babel-core": "^6.26.3",
		"babel-eslint": "^8.2.5",
		"babel-jest": "^23.4.2",
		"babel-loader": "^7.1.4",
		"babel-preset-env": "^1.7.0",
		"css-loader": "^0.28.11",
		"eslint": "^4.19.1",
		"eslint-config-standard": "^11.0.0",
		"eslint-friendly-formatter": "^4.0.1",
		"eslint-loader": "^2.0.0",
		"eslint-plugin-import": "^2.14.0",
		"eslint-plugin-node": "^6.0.1",
		"eslint-plugin-promise": "^3.8.0",
		"eslint-plugin-standard": "^3.1.0",
		"eslint-plugin-vue": "^4.5.0",
		"file-loader": "^1.1.11",
		"jest": "^23.5.0",
		"jest-serializer-vue": "^2.0.2",
		"node-sass": "^4.9.3",
		"prettier-eslint": "^8.8.2",
		"raw-loader": "^0.5.1",
		"sass-loader": "^7.1.0",
		"stylelint": "^8.4.0",
		"stylelint-config-recommended-scss": "^3.2.0",
		"stylelint-scss": "^3.3.0",
		"stylelint-webpack-plugin": "^0.10.5",
		"vue-jest": "^2.6.0",
		"vue-loader": "^15.4.1",
		"vue-template-compiler": "^2.5.17",
		"webpack": "^4.17.1",
		"webpack-cli": "^3.0.4",
		"webpack-merge": "^4.1.4"
	},
	"jest": {
		"moduleFileExtensions": [
			"js",
			"vue"
		],
		"moduleNameMapper": {
			"^@/(.*)$": "<rootDir>/src/$1"
		},
		"transform": {
			"^.+\\.js$": "babel-jest",
			"^.+\\.vue$": "vue-jest"
		},
		"snapshotSerializers": [
			"<rootDir>/node_modules/jest-serializer-vue"
		],
		"globals": {
			"t": true,
			"n": true,
			"OC": true,
			"OCA": true
		}
	}
}