-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.22 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
86
87
88
89
90
{
"name": "kompakkt.repo",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:docker": "ng serve --host=0.0.0.0 --disable-host-check",
"start:prod": "ng serve --configuration=production",
"build": "ng build",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"cy:open": "cypress open",
"cy:run": "cypress run",
"update:kompakkt:common": "bun run update-git-dependency.ts -d @kompakkt/common -o Kompakkt -r Common -b master",
"update:kompakkt:komponents": "bun run update-git-dependency.ts -d @kompakkt/komponents -o Kompakkt -r Komponents -b main",
"update:kompakkt:plugins": "bun run update-git-dependency.ts -d @kompakkt/plugins -o Kompakkt -r Plugins -b main",
"update:kompakkt:server-openapi": "bun run update-git-dependency.ts -d @kompakkt/server-openapi -o Kompakkt -r Server -b openapi-types",
"e2e": "concurrently \"ng serve --port 1503\" \"wait-on http-get://localhost:1503 && npm run cy:run\" --kill-others --success first",
"e2e-gui": "concurrently \"ng serve --port 1503\" \"wait-on http-get://localhost:1503 && npm run cy:open\" --kill-others --success first",
"extract-translations": "ts-node --skipProject ./extract-translations.ts"
},
"contributors": [
{
"name": "Jan G. Wieners",
"email": "jan.wieners@uni-koeln.de",
"url": "https://jan-wieners.de"
},
{
"name": "Kai Niebes",
"email": "kai.niebes@outlook.com",
"url": "https://github.com/HeyItsBATMAN"
},
{
"name": "Zoe Schubert"
}
],
"private": true,
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@angular/animations": "21.2.6",
"@angular/cdk": "21.2.4",
"@angular/common": "21.2.6",
"@angular/compiler": "21.2.6",
"@angular/core": "21.2.6",
"@angular/forms": "21.2.6",
"@angular/material": "21.2.4",
"@angular/platform-browser": "21.2.6",
"@angular/platform-browser-dynamic": "21.2.6",
"@angular/router": "21.2.6",
"@kompakkt/common": "git+https://github.com/Kompakkt/Common.git#d054b5d50529445251f806a3242916d6f8b02e7f",
"@kompakkt/komponents": "git+https://github.com/Kompakkt/Komponents#445b8ac",
"@kompakkt/plugins": "git+https://github.com/Kompakkt/Plugins#f6f147a",
"@kompakkt/server-openapi": "git+https://github.com/Kompakkt/Server.git#f9bb25634ea225d0220b752b1e40b57a278f8e2b",
"bson-objectid": "^2.0.4",
"fast-deep-equal": "^3.1.3",
"fscreen": "1.2.0",
"idb": "^8.0.3",
"pluralize": "^8.0.0",
"rfdc": "^1.4.1",
"rxjs": "7.8.2",
"spark-md5": "^3.0.2",
"tslib": "^2.8.1",
"zone.js": "0.16.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.2.5",
"@angular/cli": "21.2.5",
"@angular/compiler-cli": "21.2.6",
"@angular/language-service": "21.2.6",
"@types/bun": "^1.3.11",
"@types/fscreen": "1.0.4",
"@types/node": "^25.5.0",
"@types/pluralize": "^0.0.33",
"@types/spark-md5": "^3.0.5",
"concurrently": "^9.2.1",
"oxfmt": "^0.42.0",
"oxlint": "^1.57.0",
"oxlint-tsgolint": "^0.18.1",
"ts-node": "~10.9.2",
"typescript": "~6.0.2",
"wait-on": "^9.0.4"
},
"trustedDependencies": [
"@kompakkt/plugins"
]
}