-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 KB
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
{
"name": "collectives",
"description": "Nextcloud Collectives App",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/collectives.git"
},
"license": "AGPL-3.0-or-later",
"author": "CollectiveCloud Team",
"type": "module",
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"lint": "tsc && eslint --ext .js,.ts,.vue src cypress playwright --max-warnings=0",
"lint:fix": "tsc && eslint --ext .js,.ts,.vue src cypress playwright --fix",
"serve": "vite --mode development serve",
"start:nextcloud": "node playwright/start-nextcloud-server.js",
"stylelint": "stylelint src/*.css src/**/*.scss src/*.vue src/**/*.vue",
"stylelint:fix": "stylelint src/*.css src/**/*.scss src/**/*.vue --fix",
"test": "vitest run",
"watch": "vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/files-legacy": "npm:@nextcloud/files@^3.12.2",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/notify_push": "^1.3.1",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.6.0",
"@playwright/test": "^1.59.1",
"@vueuse/core": "^14.2.1",
"debounce": "^3.0.0",
"escape-html": "^1.0.3",
"focus-trap": "^8.0.1",
"pinia": "^3.0.4",
"sortablejs": "^1.15.7",
"v-click-outside": "^3.2.0",
"vue": "^3.5.28",
"vue-draggable-plus": "^0.6.1",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^5.0.2",
"vue-virtual-scroller": "^2.0.1",
"workbox-core": "^7.4.0",
"workbox-expiration": "^7.4.0",
"workbox-precaching": "^7.4.0",
"workbox-routing": "^7.4.0",
"workbox-strategies": "^7.4.0",
"workbox-window": "^7.4.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/e2e-test-server": "^0.4.0",
"@nextcloud/eslint-config": "^9.0.0-rc.9",
"@nextcloud/eslint-plugin": "^2.2.1",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^2.5.2",
"@types/node": "^25.6.0",
"@vue/tsconfig": "^0.9.1",
"cypress": "^15.14.0",
"cypress-split": "^1.24.31",
"eslint": "^10.2.1",
"eslint-plugin-cypress": "^6.3.1",
"vite": "^7.3.2",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.5",
"wait-on": "^9.0.5"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}