-
Notifications
You must be signed in to change notification settings - Fork 302
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.99 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.99 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
117
118
119
120
121
122
123
124
{
"name": "nextcloud-mail",
"version": "5.7.0-beta.3",
"private": true,
"description": "Nextcloud Mail",
"license": "AGPL-3.0-only",
"author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.prod.js",
"dev": "NODE_ENV=development webpack --config webpack.dev.js",
"postinstall": "patch-package",
"lint": "eslint --ext .js,.ts,.vue .",
"lint:fix": "eslint --ext .js,.ts,.vue --fix .",
"stylelint": "stylelint \"css/*.css\" \"css/*.scss\" \"src/**/*.scss\" \"src/**/*.vue\"",
"stylelint:fix": "stylelint \"css/*.css\" \"css/*.scss\" \"src/**/*.scss\" \"src/**/*.vue\" --fix",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:unit": "vitest --run",
"test:unit:watch": "vitest --watch",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.dev.js"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@ckeditor/ckeditor5-vue2": "^3.0.1",
"@iframe-resizer/child": "^5.5.7",
"@iframe-resizer/parent": "^5.5.7",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/calendar-js": "^8.1.4",
"@nextcloud/cdav-library": "^2.1.1",
"@nextcloud/dialogs": "^6.4.2",
"@nextcloud/files": "^3.12.2",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/paths": "^2.3.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.3.0",
"@nextcloud/timezones": "^0.2.0",
"@nextcloud/vue": "^8.34.0",
"@pinia/testing": "^0.1.7",
"@riophae/vue-treeselect": "^0.4.0",
"address-rfc2822": "^2.2.3",
"ckeditor5": "^45.2.2",
"color-convert": "^2.0.1",
"core-js": "^3.47.0",
"debounce-promise": "^3.1.2",
"dompurify": "^3.3.1",
"escape-html": "^1.0.3",
"html-to-text": "^9.0.5",
"ical.js": "^2.2.1",
"js-base64": "^3.7.8",
"jstz": "^2.1.1",
"lodash": "^4.17.21",
"md5": "^2.3.0",
"mitt": "^3.0.1",
"nextcloud_issuetemplate_builder": "^0.1.0",
"node-forge": "^1.3.3",
"p-limit": "^6.2.0",
"pinia": "^2.3.1",
"printscout": "2.0.3",
"process": "^0.11.10",
"ramda": "^0.32.0",
"raw-loader": "^4.0.2",
"stylelint": "^16.26.1",
"uuid": "^11.1.0",
"v-tooltip": "^2.1.3",
"vue": "^2.7.16",
"vue-autosize": "^1.0.2",
"vue-click-outside": "^1.1.0",
"vue-dndrop": "^1.3.4",
"vue-frag": "^1.4.3",
"vue-material-design-icons": "^5.3.1",
"vue-on-click-outside": "^1.0.3",
"vue-router": "^3.6.5",
"vue-scroll": "^2.1.13",
"vue-shortkey": "^3.1.7",
"vue-tabs-component": "^1.5.0",
"webdav": "4.11.5"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^9.0.0-rc.5",
"@nextcloud/stylelint-config": "^3.1.1",
"@playwright/test": "^1.56.1",
"@vitejs/plugin-vue2": "^2.3.4",
"@vue/test-utils": "^1.3.6",
"autoprefixer": "^10.4.22",
"babel-loader": "^10.0.0",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"css-loader": "^7.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-perfectionist": "^4.15.1",
"eslint-plugin-vitest-globals": "^1.5.0",
"file-loader": "^6.2.0",
"jsdom": "^27.2.0",
"node-polyfill-webpack-plugin": "^3.0.0",
"patch-package": "^8.0.1",
"postcss": "^8.5.6",
"postcss-loader": "^4.3.0",
"sass": "^1.93.2",
"sass-loader": "^16.0.6",
"style-loader": "^4.0.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"url-loader": "^4.1.1",
"vitest": "^3.2.4",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"webpack": "^5.102.1",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.10.0"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}