-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.6 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.6 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
{
"version": "7.2.0",
"private": true,
"homepage": "https://github.com/opencloud-eu/web",
"license": "AGPL-3.0",
"author": "OpenCloud GmbH <info@opencloud.eu>",
"type": "module",
"scripts": {
"build": "pnpm vite build",
"build:w": "pnpm build --watch",
"lint": "eslint vite.config.ts '{packages,tests}/**/*.{js,ts,vue}' --color",
"format:check": "prettier . --config packages/prettier-config/index.js --check",
"format:write": "prettier . --config packages/prettier-config/index.js --write",
"serve": "SERVER=true pnpm build:w",
"test:unit": "NODE_OPTIONS=--unhandled-rejections=throw vitest --config ./tests/unit/config/vitest.config.ts",
"licenses:check": "license-checker-rseidelsohn --summary --relativeLicensePath --onlyAllow 'Python-2.0;Apache*;Apache License, Version 2.0;Apache-2.0;Apache 2.0;Artistic-2.0;BSD;BSD-3-Clause;CC-BY-3.0;CC-BY-4.0;CC0-1.0;ISC;MIT;MPL-2.0;Public Domain;Unicode-TOU;Unlicense;WTFPL;BlueOak-1.0.0' --excludePackages '@opencloud-eu/eslint-config;@opencloud-eu/prettier-config;@opencloud-eu/tsconfig;@opencloud-eu/web-client;@opencloud-eu/web-pkg;external;web-app-files;text-editor;preview;web-app-ocm;@opencloud-eu/design-system;pdf-viewer;web-app-search;admin-settings;webfinger;web-runtime;@opencloud-eu/web-test-helpers'",
"licenses:csv": "license-checker-rseidelsohn --relativeLicensePath --csv --out ./third-party-licenses/third-party-licenses.csv",
"licenses:save": "license-checker-rseidelsohn --relativeLicensePath --out /dev/null --files ./third-party-licenses/third-party-licenses",
"vite": "vite",
"check:types": "vue-tsc --noEmit && pnpm -r --parallel check:types",
"check:all": "pnpm check:types && pnpm lint --fix && pnpm format:write && pnpm test:unit",
"test:e2e": "cd tests/e2e && pnpm bddgen && pnpm playwright test"
},
"browserslist": [
"last 1 year",
"Firefox ESR",
"> .2%",
"not dead",
"not Explorer > 0",
"not ExplorerMobile > 0",
"not BlackBerry > 0",
"not OperaMini all",
"not OperaMobile > 0",
"not ios < 12"
],
"devDependencies": {
"@axe-core/playwright": "^4.11.1",
"@module-federation/runtime": "2.3.1",
"@module-federation/vite": "1.14.2",
"@noble/hashes": "2.2.0",
"@opencloud-eu/eslint-config": "workspace:*",
"@opencloud-eu/prettier-config": "workspace:*",
"@opencloud-eu/tsconfig": "workspace:*",
"@playwright/test": "1.62.0",
"@tailwindcss/vite": "^4.2.2",
"@types/lodash-es": "^4.17.12",
"@types/luxon": "^3.7.1",
"@types/mark.js": "^8.11.12",
"@types/qs": "^6.15.0",
"@vitejs/plugin-vue": "6.0.8",
"@vitest/coverage-v8": "^4.1.2",
"@vitest/web-worker": "^4.1.2",
"@vue/compiler-dom": "^3.5.31",
"@vue/compiler-sfc": "^3.5.31",
"@vue/test-utils": "2.4.11",
"browserslist-to-esbuild": "^2.1.1",
"browserslist-useragent-regexp": "^4.1.3",
"eslint": "10.8.0",
"franc-min": "^6.2.0",
"happy-dom": "20.11.1",
"license-checker-rseidelsohn": "4.4.2",
"node-fetch": "3.3.2",
"pino": "10.3.1",
"pino-pretty": "13.1.3",
"playwright": "^1.61.1",
"playwright-core": "^1.61.1",
"playwright-bdd": "^9.2.0",
"qs": "^6.15.0",
"tailwindcss": "^4.2.2",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "6.0.3",
"vite": "^8.0.3",
"vite-plugin-node-polyfills": "0.28.0",
"vite-plugin-static-copy": "^4.0.0",
"vitest": "^4.1.2",
"vitest-mock-extended": "5.1.0",
"vue": "^3.5.31",
"vue-tsc": "3.3.8",
"vue3-gettext": "^4.0.0"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@11.17.0",
"volta": {
"node": "24.18.0"
}
}