-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.54 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 3.54 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
{
"name": "open-apivisualiser",
"version": "1.2.1",
"engines": {
"node": "^20.19.0 || ^22.12.0 || >=24.0.0"
},
"scripts": {
"prepare": "husky",
"ng": "ng",
"start": "ng serve",
"start-container": "ng serve --host 0.0.0.0",
"build": "ng build",
"build-deployment": "ng build --configuration production --output-path dist --base-href /OpenApiVisualiser/ && cp dist/index.html dist/404.html",
"lint": "ng lint",
"test": "ng test --code-coverage",
"test-headless": "NODE_OPTIONS=--max_old_space_size=4096 nyc --silent ng test --watch=false --browsers=ChromeHeadless",
"test-headless-container": "NODE_OPTIONS=--max_old_space_size=4096 nyc --silent ng test --watch=false --browsers=ChromeHeadlessNoSandbox",
"cy:run": "env -u ELECTRON_RUN_AS_NODE cypress run --headless",
"cy:coverage:report": "nyc report --reporter=html --temp-dir=.nyc_output --report-dir=./coverage/cypress",
"cy:open": "env -u ELECTRON_RUN_AS_NODE cypress open",
"e2e": "concurrently \"ng serve --host 127.0.0.1\" \"wait-on http-get://127.0.0.1:4200 && npm run cy:run\" --kill-others --success first",
"test:all": "run-s -n test-headless-container e2e",
"posttest:all": "nyc report --reporter=lcov --report-dir=./coverage/combined/html",
"sonar": "sonar-scanner -Dsonar.projectVersion=$(cat ./package.json | jq -r .version)"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.21",
"@angular/common": "^20.3.21",
"@angular/compiler": "^20.3.21",
"@angular/core": "^20.3.21",
"@angular/forms": "^20.3.21",
"@angular/platform-browser": "^20.3.21",
"@angular/platform-browser-dynamic": "^20.3.21",
"@angular/router": "^20.3.21",
"@primeuix/themes": "^1.2.5",
"@types/js-yaml": "^4.0.9",
"commonmark": "^0.31.2",
"file-saver": "^2.0.5",
"js-yaml": "^4.1.1",
"openapi3-ts": "^4.5.0",
"primeicons": "^7.0.0",
"primeng": "^20.4.0",
"rxjs": "^7.8.2",
"swagger-ui": "^5.32.6",
"tslib": "^2.8.1",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.26",
"@angular-eslint/builder": "^20.7.0",
"@angular-eslint/eslint-plugin": "^20.7.0",
"@angular-eslint/eslint-plugin-template": "^20.7.0",
"@angular-eslint/schematics": "^20.7.0",
"@angular-eslint/template-parser": "^20.7.0",
"@angular/cli": "^20.3.26",
"@angular/compiler-cli": "^20.3.21",
"@angular/language-service": "^20.3.21",
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@cypress/code-coverage": "^4.0.3",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/commonmark": "^0.27.10",
"@types/file-saver": "^2.0.7",
"@types/jasmine": "^5.1.15",
"@types/node": "^24.12.4",
"@types/swagger-ui": "^5.32.0",
"@typescript-eslint/eslint-plugin": "^8.59.4",
"@typescript-eslint/parser": "^8.59.4",
"concurrently": "^7.6.0",
"cypress": "^15.15.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.1.7",
"jasmine-core": "~4.1.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",
"karma-junit-reporter": "^2.0.1",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"typescript": "~5.8.3",
"wait-on": "^7.2.0"
}
}