-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 4.15 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 4.15 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
{
"name": "openbuild",
"version": "0.2.0",
"license": "EUPL-1.2",
"engines": {
"node": "^22.14 || ^24 || >=26",
"npm": "^11.0.0"
},
"scripts": {
"test:l10n": "node tests/l10n/check-l10n.js",
"test:l10n:write": "node tests/l10n/check-l10n.js --write",
"postinstall": "patch-package",
"build": "NODE_ENV=production webpack --config webpack.config.js --progress",
"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": "npm run lint -- --fix",
"stylelint": "stylelint \"src/**/*.{vue,scss,css}\"",
"format": "prettier --check \"**/*.{js,ts,vue,css,scss}\"",
"format:fix": "prettier --write \"**/*.{js,ts,vue,css,scss}\"",
"stylelint-fix": "stylelint \"src/**/*.{vue,scss,css}\" --fix",
"check:manifest": "node scripts/check-manifest.js",
"check:gitignore": "node scripts/check-gitignore.js",
"check:nc-floor": "node scripts/check-nc-floor.js",
"test": "vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:headed": "playwright test --headed",
"test:e2e:install": "playwright install --with-deps",
"test:newman": "newman run tests/integration/openbuild.postman_collection.json --env-var base_url=http://localhost:8080 --env-var admin_user=admin --env-var admin_password=admin",
"test:newman:ci": "newman run tests/integration/openbuild.postman_collection.json --env-var base_url=http://localhost:8080 --env-var admin_user=admin --env-var admin_password=admin --reporters cli,junit --reporter-junit-export tests/integration/newman-results.xml",
"test:unit": "vitest run",
"test:coverage": "vitest run --coverage --coverage.provider=v8 --coverage.reporter=json-summary --coverage.reporter=text-summary --coverage.include=src/** --coverage.reportsDirectory=coverage-vitest",
"test:coverage-ratchet": "npm run test:coverage && bash tests/coverage-ratchet.sh vitest coverage-vitest/coverage-summary.json",
"test:unit:watch": "vitest",
"test:watch": "vitest"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@conduction/nextcloud-vue": "^2.3.0",
"@mdi/js": "^7.4.47",
"@nextcloud/auth": "^2.4.0",
"@nextcloud/axios": "~2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.4.1",
"@nextcloud/files": "^3.12.2",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/password-confirmation": "^6.1.0",
"@nextcloud/router": "^2.0.1",
"@nextcloud/vue": "^9.5.0",
"@vueuse/core": "^14.3.0",
"axe-core": "^4.10.0",
"dexie": "^4.0.8",
"diff": "^5.2.0",
"dompurify": "^3.4.2",
"floating-vue": "^5.2.2",
"gridstack": "^12.6.0",
"marked": "^12.0.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"pinia": "^2.1.7",
"vue": "^3.5.13",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^4.5.0",
"vuedraggable": "^4.1.0"
},
"overrides": {
"libxmljs2": "^0.37.0"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@cyclonedx/cyclonedx-npm": "^4.2.1",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/prettier-config": "^1.2.0",
"@nextcloud/stylelint-config": "^2.4.0",
"@nextcloud/webpack-vue-config": "^7.0.2",
"@playwright/test": "^1.48.0",
"@typescript-eslint/parser": "^8.67.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vitest/coverage-v8": "^1.6.1",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"css-loader": "~7.1.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^24.1.3",
"newman": "^6.2.2",
"patch-package": "^8.0.1",
"path-browserify": "^1.0.1",
"postcss-html": "^1.6.0",
"prettier": "^3.9.6",
"sass": "^1.77.8",
"sass-loader": "^17.0.0",
"style-loader": "~4.0.0",
"stylelint": "^15.11.0",
"stylelint-config-recommended-scss": "^13.1.0",
"stylelint-config-recommended-vue": "^1.1.0",
"terser-webpack-plugin": "^5.6.1",
"typescript": "^5.0.2",
"vite": "^5.4.0",
"vitest": "^1.6.1",
"vue-eslint-parser": "^10.3.0",
"vue-loader": "^17.4.2",
"webpack": "^5.94.0",
"webpack-cli": "^6.0.1"
},
"prettier": "@nextcloud/prettier-config"
}