-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
116 lines (116 loc) · 5.35 KB
/
package.json
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
{
"name": "@senzing/entity-search-web-app",
"version": "3.0.0",
"license": "Apache-2.0",
"scripts": {
"ng": "ng",
"start": "npm run start:with:auth",
"start:staging": "ng serve --disableHostCheck --host 0.0.0.0",
"start:docker": "node ./run/webserver",
"start:prod": "node ./run/webserver -- apiServerUrl=\"http://localhost:8250\" webServerUrl=\"http://localhost:4200\" adminAuthPath=\"http://localhost:4200\" adminAuthSecret=\"db5b19ef-e8fc-43d3-a143-1728e3848aa3\" adminAuthToken=\"b02c708e-6fec-40c8-83b1-11bd8ed36293\" adminAuthMode=\"JWT\" webServerCspDefaultSrc=\"http://hoonan.techno\"",
"start:proxy:ws": "node ./run/websocket-proxy -- apiServerUrl=\"http://localhost:8250\" webServerUrl=\"http://localhost:4200\"",
"start:proxy:ws2": "node ./run/websocket-proxy -- webServerCspStreamServerUrl=\"ws://localhost:8255 ws://localhost:8250\" streamServerProxyPort=8255 streamServerProxyHost=\"localhost\" streamServerDestUrl=\"ws://localhost:8250\"",
"start:ws": "node ./run/websocket-server -- webServerCspStreamServerUrl=\"ws://localhost:8255 ws://localhost:8250\" streamServerProxyPort=8255 streamServerProxyHost=\"localhost\" streamServerPort=\"8250\" streamServerHost=\"localhost\" streamServerDestUrl=\"ws://localhost:8250\"",
"start:auth": "node ./run/authserver -- proxyLogLevel=debug authServerPortNumber=8200 adminAuthMode=JWT apiServerUrl=\"http://localhost:8250\" adminAuthSecret=\"db5b19ef-e8fc-43d3-a143-1728e3848aa3\" adminAuthToken=\"b02c708e-6fec-40c8-83b1-11bd8ed36293\"",
"start:config": "node ./run/config-server -- apiServerUrl=\"http://localhost:8250\" webServerUrl=\"http://localhost:4200\" consoleServerUrl=\"ws://localhost:8273\" confServerPortNumber=4201",
"start:with:auth": "concurrently \"npm run start:auth\" \"npm run start:proxy:ws\" \"npm run start:config\" \"ng serve\"",
"build": "ng build",
"build:e2e": "ng build -c production",
"build:docker": "ng build -c docker",
"build:prod": "ng build -c production",
"build:sdk": "ng-packagr -p sdk-components-ng/src/subrepo.ng-package.json",
"install:sdk": "npm install && npm run build:sdk && npm i ./dist/@senzing/sdk-components-ng",
"watch": "ng serve",
"test": "ng test",
"test:ws:config": "node ./run/test-config.js -- webServerUrl=\"http://localhost:4300\" streamServerUrl=\"ws://localhost:8250\" apiServerUrl=\"http://localhost:8250\"",
"test:headless": "ng test --no-watch --watch=false --karma-config karma.ci.conf --progress=false --no-progress --browsers=ChromeHeadless",
"e2e": "ng e2e",
"e2e:ci": "ng e2e",
"lint": "ng lint",
"prepush": "npm run test:headless",
"postshrinkwrap": "lockfix"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.12",
"@angular/cdk": "^18.2.14",
"@angular/common": "^18.2.12",
"@angular/compiler": "^18.2.12",
"@angular/core": "^18.2.12",
"@angular/forms": "^18.2.12",
"@angular/material": "^18.2.14",
"@angular/platform-browser": "^18.2.12",
"@angular/platform-browser-dynamic": "^18.2.12",
"@angular/router": "^18.2.12",
"@auth0/angular-jwt": "^5.0.2",
"@fontsource/material-icons": "^4.5.4",
"@fontsource/roboto": "^4.5.5",
"@senzing/rest-api-client-ng": "^7.0.0",
"@senzing/sdk-components-ng": "^8.0.0-beta.1",
"@types/d3": "^7.4.0",
"@types/socket.io-client": "^3.0.0",
"acorn": "^8.6.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"d3": "^7.8.4",
"express": "^4.21.2",
"express-basic-auth": "^1.2.1",
"express-jwt": "^8.4.1",
"helmet-csp": "^3.4.0",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^2.0.3",
"jsonwebtoken": "^9.0.0",
"ngx-webstorage-service": "^5.0.0",
"pug": "^3.0.2",
"rxjs": "~7.8.1",
"sanitize-filename": "^1.6.3",
"sass": "^1.77.6",
"serve-static": "^1.14.2",
"socket.io-client": "^4.5.1",
"tslib": "^2.5.0",
"uuid": "^9.0.0",
"winston": "^3.8.1",
"@xterm/xterm": "^5.5.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.12",
"@angular-devkit/schematics": "^18.2.12",
"@angular-eslint/builder": "^18.4.0",
"@angular-eslint/eslint-plugin": "^18.4.0",
"@angular-eslint/eslint-plugin-template": "^18.4.0",
"@angular-eslint/schematics": "^18.4.0",
"@angular-eslint/template-parser": "^18.4.0",
"@angular/cli": "^18.2.12",
"@angular/compiler-cli": "^18.2.12",
"@angular/language-service": "^18.2.12",
"@playwright/test": "1.49.0",
"@types/jasmine": "~3.10.3",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"angular-in-memory-web-api": "^0.18.0",
"concat": "^1.0.3",
"concurrently": "^7.3.0",
"eslint": "^8.2.0",
"fs-extra": "^9.0.1",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "^6.4.1",
"karma-brief-reporter": "^0.2.2",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-junit-reporter": "^2.0.1",
"lockfix": "^2.0.1",
"ng-packagr": "^18.2.1",
"playwright-ng-schematics": "^1.2.1",
"scss-bundle": "^3.1.2",
"ts-node": "~10.9.1",
"typescript": "~5.4.5"
}
}