-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.43 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.43 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
{
"name": "arbeitszeitcheck",
"version": "1.2.8",
"description": "German labor law compliant time tracking system for Nextcloud",
"type": "module",
"scripts": {
"lint": "eslint js/",
"lint:fix": "eslint js/ --fix",
"stylelint": "stylelint 'css/**/*.css'",
"stylelint:fix": "stylelint 'css/**/*.css' --fix",
"test": "vitest run",
"test:php:docker": "bash ../../docker/run-app-phpunit.sh arbeitszeitcheck",
"test:watch": "vitest",
"e2e": "playwright test",
"e2e:ui": "playwright test --ui",
"check:l10n": "php scripts/check-l10n-placeholders.php",
"build": "echo \"No build step\" && exit 0",
"test:a11y": "echo \"Out of scope\" && exit 0"
},
"keywords": [
"nextcloud",
"time-tracking",
"arbeitszeit",
"german-law",
"arbzg",
"gdpr"
],
"author": "Alexander Mäule <info@software-by-design.de> (https://software-by-design.de)",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/stylelint-config": "^3.0.1",
"@playwright/test": "^1.55.0",
"eslint": "^8.57.1",
"jsdom": "^26.0.0",
"vitest": "^3.2.4",
"stylelint": "^17.1.1"
},
"dependencies": {
"@nextcloud/axios": "^2.5.0",
"@nextcloud/l10n": "^3.1.0",
"date-fns": "^2.30.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0 || ^22.0.0",
"npm": "^10.0.0"
}
}