-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 3.04 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "equipose",
"version": "1.51.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"ng": "ng",
"start": "ng serve",
"start:pwa": "ng serve --configuration pwa",
"dev": "ng serve --port=3000",
"build": "node scripts/build-exception-report.mjs && node scripts/generate-sitemap.mjs && ng build && node scripts/generate-manifest.js",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:unit": "vitest run",
"test:schema": "tsx scripts/cross-env/verify_r_schema_ci.ts",
"test:syntax": "tsx scripts/validate-syntax.mjs",
"test:e2e:a11y": "playwright test tests_e2e/a11y.spec.ts",
"lint:code": "ng lint",
"lint:md": "node scripts/check-markdown-links.js && node scripts/check-orphaned-docs.js",
"lint:md:syntax": "markdownlint \"**/*.md\"",
"lint:adr": "node scripts/validate-adr.js",
"lint:duplication": "node scripts/check-duplication.js",
"lint:dead-code": "knip",
"knip": "knip",
"lint": "run-p lint:code lint:md lint:md:syntax lint:adr lint:duplication lint:dead-code",
"deploy": "pnpm run build && wrangler deploy",
"preview": "pnpm run build && wrangler dev",
"verify:logic": "vitest run src/app/domain/randomization-engine/core/randomization-algorithm-golden.spec.ts",
"fixtures:generate": "tsx scripts/generate-golden-fixtures.ts"
},
"private": true,
"dependencies": {
"@angular/common": "22.0.6",
"@angular/compiler": "22.0.6",
"@angular/core": "22.0.6",
"@angular/platform-browser": "22.0.6",
"@fontsource-variable/inter": "^5.3.0",
"@ngrx/signals": "^21.1.0",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular/build": "22.0.6",
"@angular/cli": "22.1.3",
"@angular/compiler-cli": "22.0.6",
"@axe-core/playwright": "^4.12.1",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"@semantic-release/changelog": "^7.0.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"@semantic-release/release-notes-generator": "^14.1.0",
"@stryker-mutator/core": "^9.6.1",
"@stryker-mutator/vitest-runner": "^9.6.1",
"@tailwindcss/postcss": "^4.3.2",
"@types/jest": "^30.0.0",
"@types/node": "^26.2.0",
"@types/pdf-parse": "^1.1.5",
"angular-eslint": "21.4.0",
"axe-core": "^4.12.1",
"eslint": "^10.8.1",
"fast-check": "^4.8.0",
"glob": "^13.0.6",
"jscpd": "^5.0.12",
"jsdom": "^29.1.0",
"knip": "^6.32.0",
"markdown-link-check": "^3.15.0",
"markdownlint-cli": "^0.49.0",
"marked": "^18.0.9",
"npm-run-all": "^4.1.5",
"pdf-parse": "^2.4.5",
"postcss": "^8.5.23",
"semantic-release": "^25.0.7",
"tailwindcss": "^4.2.4",
"tsx": "^4.23.11",
"typescript": "~6.0.3",
"typescript-eslint": "8.64.0",
"vitest": "^4.1.10",
"wrangler": "^4.111.0"
},
"packageManager": "pnpm@11.1.3",
"license": "AGPL-3.0-or-later"
}