-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.85 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.85 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": "twofactor_gateway",
"version": "3.0.0-dev.0",
"description": "A two-factor auth provider for Nextcloud",
"type": "module",
"scripts": {
"build": "vite build --mode production",
"dev": "vite build --mode development",
"watch": "vite build --mode development --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint src/**/*.scss src/**/*.vue --fix",
"typescript:check": "tsc --noEmit -p tsconfig.json",
"typescript:generate": "npx openapi-typescript ./openapi.json -t -o src/types/openapi/openapi.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"author": "Christoph Wurst <christoph@winzerhof-wurst.at>",
"license": "AGPL-3.0",
"dependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.6.0",
"dompurify": "^3.4.0",
"markdown-it": "^14.1.1",
"vue": "^3.5.32",
"vue-material-design-icons": "^5.3.1",
"vuedraggable": "^4.1.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",
"@playwright/test": "^1.59.1",
"@typescript-eslint/eslint-plugin": "^8.59.0",
"@typescript-eslint/parser": "^8.59.0",
"@vitejs/plugin-vue": "^6.0.6",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.1",
"jsdom": "^29.0.2",
"openapi-typescript": "^7.13.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-stylelint": "^6.1.0",
"vitest": "^4.1.4"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}