summaryrefslogtreecommitdiffstats
path: root/package.json
blob: c809d9d34372a38dc31ffb9056db784b728d8f63 (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
{
	"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",
			"homepage": "https://jancborchardt.net",
			"role": "Designer"
		}
	],
	"license": "agpl",
	"private": true,
	"scripts": {
		"dev": "NODE_ENV=development webpack --config webpack.common.js",
		"watch": "NODE_ENV=development webpack --progress --watch --config webpack.common.js",
		"build": "NODE_ENV=production webpack --progress --config webpack.common.js",
		"serve": "NODE_ENV=development webpack serve --progress --config webpack.common.js",
		"lint": "eslint --ext .js,.vue src",
		"lint:fix": "eslint --ext .js,.vue src --fix",
		"test": "jest",
		"test:coverage": "jest --coverage",
		"cypress": "./cypress/start.sh; cypress run; ./cypress/stop.sh",
		"cypress:gui": "./cypress/start.sh; cypress open; ./cypress/stop.sh",
		"wait-on": "wait-on -i 500 -t 300000"
	},
	"dependencies": {
		"@nextcloud/auth": "^2.0.0",
		"@nextcloud/axios": "^2.3.0",
		"@nextcloud/dialogs": "^3.2.0",
		"@nextcloud/initial-state": "^2.0.0",
		"@nextcloud/l10n": "^1.6.0",
		"@nextcloud/logger": "^2.4.0",
		"@nextcloud/moment": "^1.2.1",
		"@nextcloud/router": "^2.0.1",
		"@nextcloud/stylelint-config": "^2.3.0",
		"@nextcloud/vue": "^7.3.0",
		"@nextcloud/vue-richtext": "^2.0.4",
		"he": "^1.2.0",
		"linkify-plugin-mention": "^4.1.0",
		"linkify-string": "^4.1.0",
		"linkifyjs": "^4.0.2",
		"sass": "^1.57.1",
		"tributejs": "^5.1.3",
		"twemoji": "12.0.1",
		"uuid": "^8.3.2",
		"v-tooltip": "^4.0.0-beta.0",
		"vue": "^2.7.10",
		"vue-click-outside": "^1.0.7",
		"vue-contenteditable-directive": "^1.2.0",
		"vue-infinite-loading": "^2.4.4",
		"vue-material-design-icons": "^5.0.0",
		"vue-router": "^3.6.5",
		"vue-tribute": "^1.0.7",
		"vue-twemoji": "^1.0.1",
		"vuetrend": "^0.3.4",
		"vuex": "^3.6.2",
		"vuex-router-sync": "^5.0.0"
	},
	"browserslist": [
		"extends @nextcloud/browserslist-config"
	],
	"browser": {
		"fs": false
	},
	"engines": {
		"node": "^16.0.0",
		"npm": "^7.0.0 || ^8.0.0"
	},
	"devDependencies": {
		"@cypress/browserify-preprocessor": "^3.0.2",
		"@nextcloud/babel-config": "^1.0.0",
		"@nextcloud/browserslist-config": "^2.3.0",
		"@nextcloud/eslint-config": "^8.1.4",
		"@nextcloud/webpack-vue-config": "^5.4.0",
		"cypress": "^11.2.0",
		"jest": "^29.3.1",
		"jest-serializer-vue": "^3.1.0",
		"vue-template-compiler": "^2.7.10",
		"wait-on": "^7.0.1"
	},
	"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"
		]
	}
}