-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.67 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.67 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
{
"name": "module-management-client",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"api:generate": "npx openapi-generator-cli generate -i http://localhost:8080/v3/api-docs.yaml -g typescript-angular -o src/app/core/modules/openapi --additional-properties fileNaming=kebab-case,withInterfaces=true --generate-alias-as-model",
"api:clean": "rm -rf src/app/core/modules/openapi",
"api:update": "npm run api:clean && npm run api:generate",
"dependencies:update": "npm-check-updates -u && npm install"
},
"private": true,
"dependencies": {
"@angular/cdk": "21.1.4",
"@angular/common": "21.2.5",
"@angular/core": "21.1.4",
"@angular/forms": "21.2.5",
"@angular/platform-browser": "21.2.5",
"@angular/platform-browser-dynamic": "21.2.5",
"@angular/router": "21.2.5",
"@primeuix/themes": "2.0.3",
"keycloak-js": "26.2.3",
"primeicons": "7.0.0",
"primeng": "21.1.1",
"rxjs": "7.8.2",
"tslib": "2.8.1"
},
"devDependencies": {
"@angular/build": "21.1.4",
"@angular/cli": "21.1.4",
"@angular/compiler": "21.1.4",
"@angular/compiler-cli": "21.2.5",
"@openapitools/openapi-generator-cli": "2.28.3",
"@tailwindcss/postcss": "4.1.18",
"@types/jasmine": "6.0.0",
"autoprefixer": "10.4.24",
"jasmine-core": "6.0.1",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.2.0",
"postcss": "8.5.6",
"tailwindcss": "4.1.18",
"typescript": "5.9.3"
}
}