-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 2.11 KB
/
package.json
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
{
"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/*.css --base src/main/css --dir target/classes/static",
"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 src/main/javascript",
"lint:svelte": "svelte-check",
"lint:ts": "tsc -noEmit",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write src/main/javascript"
},
"dependencies": {
"@duetds/date-picker": "1.4.0",
"@hotwired/turbo": "8.0.12",
"@popperjs/core": "2.11.8",
"@rollup/plugin-commonjs": "28.0.1",
"@rollup/plugin-node-resolve": "15.3.0",
"@tsconfig/svelte": "5.0.0",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@ungap/custom-elements": "1.3.0",
"@vitest/coverage-v8": "2.1.6",
"autoprefixer": "10.4.20",
"concurrently": "9.1.0",
"cssnano": "7.0.6",
"date-fns": "3.6.0",
"esbuild": "0.24.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-svelte": "2.46.1",
"eslint-plugin-unicorn": "56.0.1",
"fast-glob": "3.3.2",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"postcss-import": "16.1.0",
"prettier": "3.4.1",
"prettier-plugin-svelte": "3.3.2",
"rimraf": "6.0.1",
"rollup": "4.28.0",
"rollup-plugin-esbuild": "6.1.1",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-svelte": "7.2.2",
"svelte": "5.3.0",
"svelte-check": "4.1.0",
"svelte-preprocess": "6.0.3",
"tailwindcss": "3.4.15",
"typescript": "5.7.2",
"vitest": "2.1.6"
},
"lint-staged": {
"*.{js,mjs,ts,svelte,html,svg,css}": [
"prettier --write"
]
}
}