-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 3.24 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
{
"name": "launchpad",
"version": "1.0.0",
"description": "Enhanced dashboard with grid layout and admin controls for Nextcloud",
"license": "EUPL-1.2",
"main": "src/main.js",
"engines": {
"node": "^22.14 || ^24 || >=26",
"npm": "^11.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",
"check:schema-l10n": "node scripts/check-schema-l10n.js",
"check:manifest": "node scripts/check-manifest.js",
"lint": "eslint src && npm run check:manifest && npm run lint:initial-state && npm run lint:translation-domain",
"lint:fix": "eslint src --fix",
"lint:initial-state": "node ./scripts/lint-initial-state.js",
"lint:translation-domain": "node ./scripts/lint-translation-domain.js",
"stylelint": "stylelint \"{src,css}/**/*.{vue,scss,css}\"",
"stylelint:fix": "stylelint \"{src,css}/**/*.{vue,scss,css}\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:excluded": "playwright test --config=playwright.excluded.config.ts",
"test:e2e:docs": "playwright test --config=playwright.docs.config.ts",
"format": "prettier --check \"**/*.{js,ts,vue,css,scss}\"",
"format:fix": "prettier --write \"**/*.{js,ts,vue,css,scss}\"",
"prepare": "git config core.hooksPath .githooks || true"
},
"dependencies": {
"@conduction/nextcloud-vue": "^2.24.2",
"@mdi/js": "^7.4.47",
"@nextcloud/axios": "^2.6.0",
"@nextcloud/dialogs": "^7.4.1",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.11.0",
"dexie": "^4.4.5",
"dompurify": "^3.4.14",
"gridstack": "^12.2.1",
"marked": "^18.0.3",
"pinia": "~2.1.7",
"vue": "^3.5.42",
"vue-loader": "^17.4.2",
"vue-material-design-icons": "^5.2.0",
"vue-router": "^4.5.0",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^6.0.1",
"@nextcloud/babel-config": "^1.2.0",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/password-confirmation": "^6.1.0",
"@nextcloud/prettier-config": "^1.2.0",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/webpack-vue-config": "^7.0.2",
"@playwright/test": "^1.59.1",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/ui": "^4.1.11",
"@vue/compiler-sfc": "^3.5.13",
"@vue/server-renderer": "^3.5.42",
"@vue/test-utils": "^2.5.0",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^24.1.3",
"prettier": "^3.9.6",
"stylelint": "^17.9.1",
"terser-webpack-plugin": "^5.3.11",
"typescript": "^5.4.0",
"vitest": "^4.1.11",
"vue-eslint-parser": "^10.3.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"overrides": {
"pinia": "~2.1.7",
"@vueuse/core": "^14.0.0",
"@vueuse/shared": "^14.0.0"
},
"prettier": "@nextcloud/prettier-config"
}