summaryrefslogtreecommitdiffstats
path: root/package.json
blob: fa5f9e8c7ac9d71910ee0e862bcd40e40c9ea118 (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
	"name": "social",
	"description": "🎉 Nextcloud becomes part of the federated social networks!",
	"version": "0.0.1",
	"authors": [
		{
			"name": "John Molakvoæ",
			"email": "skjnldsv@protonmail.com",
			"role": "Developer"
		},
		{
			"name": "Jan-Christoph Borchardt",
			"email": "hey@jancborchardt.net",
			"homepage": "https://jancborchardt.net",
			"role": "Designer"
		}
	],
	"license": "agpl",
	"private": true,
	"scripts": {
		"dev": "NODE_ENV=development webpack --config webpack.dev.js",
		"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js",
		"build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
		"lint": "eslint --ext .js,.vue src",
		"lint:fix": "eslint --ext .js,.vue src --fix",
		"test": "jest",
		"test:coverage": "jest --coverage",
		"cypress": "cypress run",
		"cypress:gui": "cypress open"
	},
	"dependencies": {
		"@babel/runtime": "^7.13.10",
		"@nextcloud/auth": "^1.3.0",
		"@nextcloud/axios": "^1.6.0",
		"@nextcloud/initial-state": "^1.2.0",
		"@nextcloud/logger": "^1.1.2",
		"@nextcloud/moment": "^1.1.1",
		"@nextcloud/router": "^1.2.0",
		"@nextcloud/vue": "^3.7.2",
		"he": "^1.2.0",
		"linkifyjs": "^2.1.8",
		"tributejs": "^3.7.3",
		"twemoji": "12.0.1",
		"uuid": "^8.3.2",
		"v-tooltip": "^3.0.0-alpha.21",
		"vue": "^2.6.12",
		"vue-click-outside": "^1.0.7",
		"vue-contenteditable-directive": "^1.2.0",
		"vue-emoji-picker": "^1.0.1",
		"vue-infinite-loading": "^2.4.4",
		"vue-masonry-css": "^1.0.3",
		"vue-router": "^3.5.1",
		"vue-tribute": "^1.0.6",
		"vue-twemoji": "^1.0.1",
		"vuetrend": "^0.3.4",
		"vuex": "^3.6.2",
		"vuex-router-sync": "^5.0.0"
	},
	"browserslist": [
		"last 2 versions",
		"not ie <= 11"
	],
	"engines": {
		"node": ">=10.0.0"
	},
	"devDependencies": {
		"@babel/core": "^7.13.10",
		"@babel/plugin-syntax-dynamic-import": "^7.8.3",
		"@babel/preset-env": "^7.13.10",
		"@nextcloud/browserslist-config": "^2.0.0",
		"@nextcloud/eslint-config": "^2.1.0",
		"@nextcloud/eslint-plugin": "^1.5.0",
		"@vue/test-utils": "^1.1.3",
		"acorn": "^8.1.0",
		"babel-eslint": "^10.0.3",
		"babel-jest": "^26.6.3",
		"babel-loader": "^8.2.2",
		"css-loader": "^5.1.3",
		"cypress": "^6.8.0",
		"cypress-image-snapshot": "^4.0.1",
		"cypress-testing-library": "^4.0.0",
		"eslint": "^6.8.0",
		"eslint-config-standard": "^12.0.0",
		"eslint-friendly-formatter": "^4.0.1",
		"eslint-loader": "^3.0.2",
		"eslint-plugin-import": "^2.22.1",
		"eslint-plugin-node": "^11.1.0",
		"eslint-plugin-promise": "^4.3.1",
		"eslint-plugin-standard": "^4.1.0",
		"eslint-plugin-vue": "^6.2.2",
		"file-loader": "^6.2.0",
		"jest": "^26.6.3",
		"jest-serializer-vue": "^2.0.2",
		"node-sass": "^5.0.0",
		"prettier-eslint": "^11.0.0",
		"raw-loader": "^4.0.2",
		"sass-loader": "^10.1.1",
		"style-loader": "^2.0.0",
		"stylelint": "^8.4.0",
		"stylelint-config-recommended-scss": "^3.3.0",
		"stylelint-webpack-plugin": "^0.10.5",
		"vue-jest": "^3.0.7",
		"vue-loader": "^15.9.6",
		"vue-template-compiler": "^2.6.12",
		"webpack": "^4.46.0",
		"webpack-cli": "^4.5.0",
		"webpack-merge": "^5.7.3"
	},
	"jest": {
		"moduleFileExtensions": [
			"js",
			"vue"
		],
		"moduleNameMapper": {
			"^@/(.*)$": "<rootDir>/src/$1"
		},
		"transform": {
			"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
			".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
		},
		"snapshotSerializers": [
			"<rootDir>/node_modules/jest-serializer-vue"
		]
	}
}