This repository was archived by the owner on May 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.21 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
{
"name": "mydash",
"version": "1.0.0",
"description": "Enhanced dashboard with grid layout and admin controls for Nextcloud",
"main": "src/main.js",
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"scripts": {
"build": "webpack --config webpack.config.js --progress --mode production",
"dev": "NODE_ENV=development webpack --config webpack.config.js --progress",
"watch": "NODE_ENV=development webpack --config webpack.config.js --progress --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@conduction/nextcloud-vue": "^0.1.0-beta.1",
"@mdi/js": "^7.4.47",
"@nextcloud/axios": "^2.5.0",
"@nextcloud/dialogs": "^6.1.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.2.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^8.16.0",
"dompurify": "^3.4.1",
"gridstack": "^10.3.1",
"pinia": "^2.1.7",
"vue": "^2.7.16",
"vue-loader": "^15.11.1",
"vue-material-design-icons": "^5.2.0",
"vue-router": "^3.6.5",
"vue-template-compiler": "^2.7.16"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^4.2.1",
"@eslint/config-helpers": "^0.4.2",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.39.1",
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^5.5.0",
"@vitejs/plugin-vue2": "^2.3.4",
"@vitest/ui": "^4.1.5",
"@vue/test-utils": "^1.3.6",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.56.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.21.1",
"jsdom": "^29.1.1",
"stylelint": "^15.11.0",
"typescript": "^5.4.0",
"vitest": "^4.1.5"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"overrides": {
"vue": "^2.7.16",
"vue-template-compiler": "^2.7.16"
}
}