-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.11 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
{
"name": "schuldschein-generator",
"version": "0.2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "vitest run",
"gate": "node pruefe-gate.mjs",
"smoke": "node tools/smoketest.mjs",
"a11y": "node tools/pruefe-barrierefreiheit.mjs",
"einwilligung": "node pruefe-einwilligung.mjs",
"bilder": "node tools/erzeuge-bilder.mjs",
"pruefen": "vitest run && astro build && node pruefe-gate.mjs && astro preview stop && astro preview --port 4412 --background && node tools/smoketest.mjs http://localhost:4412 && node tools/pruefe-barrierefreiheit.mjs http://localhost:4412"
},
"dependencies": {
"@fontsource/barlow-semi-condensed": "^5.3.0",
"@fontsource/ibm-plex-mono": "^5.3.0",
"@tailwindcss/vite": "^4.3.3",
"astro": "^7.3.3",
"docx": "^9.7.1",
"pdf-lib": "^1.17.1",
"tailwindcss": "^4.3.3",
"vanilla-cookieconsent": "^3.1.0"
},
"devDependencies": {
"axe-core": "^4.13.0",
"playwright-core": "^1.63.0",
"typescript": "^7.0.2",
"vitest": "^5.0.1"
}
}