-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) 路 2.02 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) 路 2.02 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
{
"private": true,
"name": "@focus-shift/zeiterfassung",
"scripts": {
"build": "concurrently 'npm:lint:*' 'npm:build:*' -c 'bgRed.bold,bgBlue.bold'",
"build:js": "rollup -c",
"build:css": "postcss src/main/css/bundles --dir target/classes/static/css",
"dev": "concurrently 'npm:lint:ts -- --watch' 'npm:dev:*' -c 'bgRed.bold,bgBlue.bold'",
"dev:js": "npm run build:js -- -w",
"dev:css": "npm run build:css -- --watch",
"lint": "concurrently 'npm:lint:*'",
"lint:eslint": "eslint .",
"lint:ts": "tsc -noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write src/main/javascript"
},
"dependencies": {
"@duetds/date-picker": "1.4.0",
"@eslint/js": "10.0.1",
"@hotwired/turbo": "8.0.23",
"@popperjs/core": "2.11.8",
"@rollup/plugin-commonjs": "29.0.3",
"@rollup/plugin-node-resolve": "16.0.3",
"@tailwindcss/postcss": "4.3.3",
"@types/hotwired__turbo": "8.0.16",
"@types/node": "26.4.0",
"@typescript-eslint/eslint-plugin": "8.68.0",
"@typescript-eslint/parser": "8.68.0",
"@ungap/custom-elements": "1.3.0",
"@vitest/coverage-v8": "4.1.11",
"concurrently": "10.0.5",
"cssnano": "9.0.1",
"date-fns": "4.4.0",
"esbuild": "0.28.2",
"eslint": "10.4.1",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.5",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-unicorn": "64.0.0",
"fast-glob": "3.3.3",
"globals": "17.11.0",
"idiomorph": "0.7.4",
"jsdom": "30.0.1",
"lint-staged": "17.4.1",
"postcss": "8.5.26",
"postcss-cli": "11.0.1",
"prettier": "3.9.6",
"rimraf": "6.1.3",
"rollup": "4.63.1",
"rollup-plugin-esbuild": "6.2.1",
"rollup-plugin-postcss": "4.0.2",
"tailwindcss": "4.3.3",
"typescript": "6.0.3",
"typescript-eslint": "8.68.0",
"vitest": "4.1.11"
},
"lint-staged": {
"*.{js,mjs,ts,html,svg,css}": [
"prettier --write"
]
}
}