-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.91 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.91 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"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": "npm run webapp:prod --",
"cleanup": "rimraf build/",
"compile:ts:tests": "npm run prebuild && tsc --project tsconfig.spec.json",
"postinstall": "husky",
"lint": "eslint .",
"lint:fix": "npm 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": "npm run start --",
"services:up": "docker compose -f src/main/docker/services.yml up --wait",
"start": "npm run prebuild -- --develop && ng serve --hmr",
"start-tls": "npm run webapp:dev-ssl",
"pretest": "npm run lint",
"test": "npm run prebuild && ng test",
"test:watch": "npm run prebuild && npm run test -- --watch",
"update": "ncu -i --format group",
"webapp:build": "npm run prebuild -- --develop && ng build --configuration development",
"webapp:dev": "npm run prebuild -- --develop && ng serve",
"webapp:prod": "npm run prebuild && NG_BUILD_OPTIMIZE_CHUNKS=1 ng build --configuration production"
},
"config": {
"default_environment": "prod"
},
"overrides": {
"@swimlane/ngx-charts": {
"@angular/animations": "^21.1.0",
"@angular/cdk": "^21.1.0",
"@angular/common": "^21.1.0",
"@angular/compiler": "^21.1.0",
"@angular/core": "^21.1.0",
"@angular/forms": "^21.1.0",
"@angular/platform-browser": "^21.1.0",
"@angular/platform-browser-dynamic": "^21.1.0",
"@angular/router": "^21.1.0",
"rxjs": "^7.8.2"
},
"braces": "3.0.3",
"cookie": "1.1.1",
"debug": "4.4.3",
"esbuild": "0.27.2",
"express": "5.2.1",
"globals": "17.3.0",
"lodash": "4.17.23",
"lodash-es": "4.17.23",
"postcss": "8.5.6",
"punycode": "2.3.1",
"rimraf": "6.1.2",
"tough-cookie": "6.0.0",
"webpack": "5.104.1",
"webpack-dev-middleware": "7.4.5",
"webpack-dev-server": "5.2.3",
"word-wrap": "1.2.5",
"ws": "8.19.0",
"yargs-parser": "22.0.0"
},
"dependencies": {
"@angular/common": "21.1.2",
"@angular/compiler": "21.1.2",
"@angular/core": "21.1.2",
"@angular/forms": "21.1.2",
"@angular/localize": "21.1.2",
"@angular/platform-browser": "21.1.2",
"@angular/platform-browser-dynamic": "21.1.2",
"@angular/router": "21.1.2",
"@angular/service-worker": "21.1.2",
"@fortawesome/angular-fontawesome": "4.0.0",
"@fortawesome/fontawesome-svg-core": "7.1.0",
"@fortawesome/free-solid-svg-icons": "7.1.0",
"@ng-bootstrap/ng-bootstrap": "20.0.0",
"@stomp/rx-stomp": "2.3.0",
"@swimlane/ngx-charts": "23.1.0",
"bootstrap": "5.3.8",
"dayjs": "1.11.19",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.1.2",
"@angular/build": "21.1.2",
"@angular/cli": "21.1.2",
"@angular/compiler-cli": "21.1.2",
"@types/d3-scale": "4.0.9",
"@types/d3-selection": "3.0.11",
"@types/d3-shape": "3.1.8",
"@types/node": "25.1.0",
"angular-eslint": "21.2.0",
"eslint": "9.39.2",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"postinstall-postinstall": "2.1.0",
"prettier": "3.8.1",
"prettier-plugin-java": "2.8.1",
"prettier-plugin-packagejson": "3.0.0",
"rimraf": "6.1.2",
"sass": "1.97.3",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0"
},
"engines": {
"node": ">=24.11.0",
"npm": ">=11.6.0"
},
"cacheDirectories": [
"node_modules"
]
}