-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.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
{
"name": "usage-statistics-server",
"version": "0.1.0",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "vite build",
"dev": "vite build --mode development",
"lint": "eslint .",
"playwright": "playwright test",
"playwright:install-ci": "playwright install --with-deps chromium",
"stylelint": "stylelint src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.vue --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"test:watch": "vitest",
"ts:check": "vue-tsc --noEmit",
"typescript:generate": "openapi-typescript -t"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"overrides": {
"openapi-typescript": {
"typescript": "$typescript"
}
},
"dependencies": {
"@nextcloud/axios": "^2.6.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.11.0",
"vue": "^3.5.30"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.1",
"@nextcloud/vite-config": "^3.0.0-beta.1",
"@playwright/test": "^1.62.1",
"@types/node": "^24.0.0",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.11",
"@vue/test-utils": "^2.5.0",
"happy-dom": "^20.14.0",
"openapi-typescript": "^7.13.0",
"stylelint": "^17.9.1",
"typescript": "^6.0.3",
"vite": "^8.2.2",
"vitest": "^4.1.4",
"vue-tsc": "^3.3.11"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}