-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 3.21 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
91
92
93
94
95
{
"name": "artemis-benchmarking",
"version": "0.4.3",
"private": true,
"description": "Artemis Benchmarking",
"license": "MIT",
"author": {
"name": "Stephan Krusche",
"email": "krusche@tum.de",
"url": "https://aet.cit.tum.de/krusche"
},
"scripts": {
"prebuild": "node prebuild.mjs",
"build": "pnpm run webapp:prod",
"cleanup": "rimraf build/",
"compile:ts:tests": "pnpm run prebuild && tsc --project tsconfig.spec.json",
"e2e": "playwright test",
"postinstall": "husky",
"lint": "eslint .",
"lint:fix": "pnpm run lint --fix",
"prettier:check": "prettier --check \"{,src/**/,.blueprint/**/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss,java}\"",
"prettier:format": "prettier --write \"{,src/**/,.blueprint/**/}*.{md,json,yml,html,cjs,mjs,js,ts,tsx,css,scss,java}\"",
"serve": "pnpm run start",
"services:up": "docker compose -f src/main/docker/services.yml up --wait",
"start": "pnpm run prebuild --develop && ng serve --hmr",
"start-tls": "pnpm run webapp:dev-ssl",
"pretest": "pnpm run lint",
"test": "pnpm run prebuild && ng test",
"test:watch": "pnpm run prebuild && pnpm run test --watch",
"update": "ncu -i --format group",
"webapp:build": "pnpm run prebuild --develop && ng build --configuration development",
"webapp:dev": "pnpm run prebuild --develop && ng serve",
"webapp:prod": "pnpm run prebuild && NG_BUILD_OPTIMIZE_CHUNKS=1 ng build --configuration production"
},
"config": {
"default_environment": "prod"
},
"dependencies": {
"@angular/animations": "22.0.2",
"@angular/cdk": "22.0.2",
"@angular/common": "22.0.2",
"@angular/compiler": "22.0.2",
"@angular/core": "22.0.2",
"@angular/forms": "22.0.2",
"@angular/localize": "22.0.2",
"@angular/platform-browser": "22.0.2",
"@angular/platform-browser-dynamic": "22.0.2",
"@angular/router": "22.0.2",
"@angular/service-worker": "22.0.2",
"@fortawesome/angular-fontawesome": "5.0.0",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"@ng-bootstrap/ng-bootstrap": "21.0.0-rc.0",
"@stomp/rx-stomp": "2.4.0",
"@swimlane/ngx-charts": "24.0.0",
"bootstrap": "5.3.8",
"dayjs": "1.11.21",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.0.3",
"@angular/build": "22.0.3",
"@angular/cli": "22.0.3",
"@angular/compiler-cli": "22.0.2",
"@eslint/js": "10.0.1",
"@playwright/test": "1.61.0",
"@types/d3-scale": "4.0.9",
"@types/d3-selection": "3.0.11",
"@types/d3-shape": "3.1.8",
"@types/node": "25.9.3",
"angular-eslint": "22.0.0",
"eslint": "10.5.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.6",
"globals": "17.6.0",
"husky": "9.1.7",
"lint-staged": "17.0.7",
"prettier": "3.8.4",
"prettier-plugin-java": "2.9.7",
"prettier-plugin-packagejson": "3.0.2",
"rimraf": "6.1.3",
"sass": "1.101.0",
"typescript": "6.0.3",
"typescript-eslint": "8.61.1"
},
"packageManager": "pnpm@11.8.0",
"engines": {
"node": ">=24.15.0",
"pnpm": ">=11.1.0 <12.0.0"
},
"cacheDirectories": [
"node_modules"
]
}