-
-
Notifications
You must be signed in to change notification settings - Fork 109
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 3.26 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 3.26 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
{
"name": "libresign",
"description": "A app for signing documents",
"version": "13.0.0-dev.0",
"license": "agpl",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"serve": "vite dev",
"ts:check": "vue-tsc --noEmit",
"typescript:generate": "npx openapi-typescript -t",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui --ui-host=0.0.0.0 --ui-port=9323",
"test:e2e:report": "playwright show-report"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/language": "^6.12.2",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@fontsource/dancing-script": "^5.2.8",
"@libresign/pdf-elements": "^1.1.3",
"@marionebl/option": "^1.0.8",
"@mdi/js": "^7.4.47",
"@mdi/svg": "^7.4.47",
"@nextcloud/auth": "^2.5.3",
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/logger": "^3.0.3",
"@nextcloud/moment": "^1.3.5",
"@nextcloud/password-confirmation": "^6.1.0",
"@nextcloud/paths": "^3.1.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/upload": "^2.0.0-rc.0",
"@nextcloud/vue": "^9.6.0",
"@ssddanbrown/codemirror-lang-twig": "^1.0.0",
"@uiw/codemirror-theme-material": "^4.25.8",
"@vuelidate/core": "^2.0.3",
"@vuelidate/validators": "^2.0.4",
"@vueuse/core": "^14.2.1",
"@vueuse/integrations": "^14.2.1",
"blueimp-md5": "^2.19.0",
"codemirror": "^6.0.2",
"debounce": "^3.0.0",
"js-confetti": "^0.13.1",
"pdfjs-dist": "^5.5.207",
"pinia": "^3.0.4",
"signature_pad": "^5.1.3",
"sortablejs": "^1.15.7",
"vue": "^3.5.30",
"vue-advanced-cropper": "^2.8.9",
"vue-codemirror6": "^1.4.3",
"vue-router": "^5.0.3",
"vuedraggable": "^4.1.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^2.5.2",
"@pinia/testing": "^1.0.3",
"@playwright/test": "^1.58.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/vue": "^8.1.0",
"@types/blueimp-md5": "^2.18.2",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/coverage-v8": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"happy-dom": "^20.8.4",
"mailpit-api": "^1.7.2",
"openapi-typescript": "^7.13.0",
"typescript": "^5.9.3",
"vite": "^7.1.10",
"vite-plugin-node-polyfills": "^0.25.0",
"vitest": "^4.1.0",
"vue-tsc": "^3.2.6"
}
}