forked from nextcloud/calendar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) 路 3.68 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) 路 3.68 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
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
{
"name": "calendar",
"description": "A calendar app for Nextcloud. Easily sync events from various devices, share and edit them online.",
"version": "6.7.0-dev.1",
"keywords": [
"nextcloud",
"calendars",
"vevent",
"caldav"
],
"bugs": {
"url": "https://github.com/nextcloud/calendar/issues"
},
"repository": {
"url": "https://github.com/nextcloud/calendar",
"type": "git"
},
"homepage": "https://github.com/nextcloud/calendar",
"license": "agpl",
"private": true,
"scripts": {
"build": "rspack build --env production",
"dev": "rspack build --env development",
"watch": "rspack build --env development --watch",
"analyze": "RSDOCTOR=true rspack build --env production",
"stats": "rspack build --env production --json js/stats.json",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"stylelint": "stylelint \"css/*.css\" \"css/*.scss\" \"src/**/*.scss\" \"src/**/*.vue\"",
"stylelint:fix": "stylelint \"css/*.css\" \"css/*.scss\" \"src/**/*.scss\" \"src/**/*.vue\" --fix",
"test:unit": "LANG=C vitest --run",
"test:unit:watch": "LANG=C vitest --watch",
"test:unit:coverage": "LANG=C vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"ts:check": "tsc --noEmit"
},
"dependencies": {
"@fullcalendar/core": "6.1.21",
"@fullcalendar/daygrid": "6.1.21",
"@fullcalendar/interaction": "6.1.21",
"@fullcalendar/list": "6.1.21",
"@fullcalendar/multimonth": "6.1.21",
"@fullcalendar/resource": "6.1.21",
"@fullcalendar/resource-timeline": "6.1.21",
"@fullcalendar/timegrid": "6.1.21",
"@fullcalendar/vue3": "6.1.21",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.6.0",
"@nextcloud/axios": "^2.6.0",
"@nextcloud/calendar-availability-vue": "^3.0.0",
"@nextcloud/calendar-js": "^8.1.7",
"@nextcloud/cdav-library": "^2.8.0",
"@nextcloud/dialogs": "^7.5.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/notify_push": "^1.4.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/timezones": "^1.0.2",
"@nextcloud/vue": "^9.11.0",
"autosize": "^6.0.1",
"color-convert": "^3.1.3",
"color-string": "^2.1.4",
"core-js": "^3.50.0",
"css-color-names": "^1.0.1",
"datetime-locale-patterns": "^1.0.2",
"debounce": "^3.0.0",
"linkifyjs": "^4.3.3",
"md5": "^2.3.0",
"p-limit": "^7.3.2",
"pinia": "^4.0.3",
"vue": "^3.5.42",
"vue-loader": "^17.4.2",
"vue-material-design-icons": "^5.3.1",
"vue-router": "^5.3.1",
"vuedraggable": "^4.1.0",
"webdav": "^5.10.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/typings": "^1.10.0",
"@playwright/test": "^1.62.1",
"@rsdoctor/rspack-plugin": "^1.6.3",
"@rspack/cli": "^2.2.2",
"@rspack/core": "^2.2.2",
"@rspack/plugin-node-polyfill": "^0.5.8",
"@types/node": "^26.4.1",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/eslint-plugin": "^1.6.27",
"@vue/compiler-sfc": "^3.5.42",
"@vue/test-utils": "^2.5.0",
"css-loader": "^7.1.5",
"eslint-plugin-path": "^3.0.0",
"jsdom": "^30.0.1",
"sass": "^1.103.1",
"sass-loader": "^17.0.1",
"typescript": "^6.0.3",
"vitest": "^4.1.11"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}