-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 4.12 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 4.12 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
{
"name": "player.ui",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"docker:build": "docker build -t cmusei/player-ui:${npm_package_version} .",
"docker:init": "docker network create identity --driver=overlay",
"docker:stack": "npm run docker:stack:api && npm run docker:stack:identity",
"docker:stack:proxy": "docker stack deploy -c ./docker/docker-compose.yml -c ./docker/compose/api.yml -c ./docker/api-proxy.yml player_stack",
"docker:stack:api": "docker stack deploy -c ./docker/docker-compose.yml -c ./docker/compose/api.yml player_stack",
"docker:stack:identity": "docker stack deploy -c ./docker/docker-compose.yml -c ./docker/compose/identity.yml identity_stack",
"docker:destroy": "docker stack rm player_stack identity_stack",
"swagger:gen": "curl --insecure http://localhost:4300/swagger/v1/swagger.json --output swagger.json && node_modules/@openapitools/openapi-generator-cli/bin/openapi-generator generate -i ./swagger.json -g typescript-angular -o src/app/generated/player-api --additional-properties ngVersion=12.1 --additional-properties useRxJS6=true --additional-properties modelPropertyNaming=original --type-mappings=DateTime=Date --skip-validate-spec",
"swagger:gen-win": "docker run --rm -v %CD%:/local openapitools/openapi-generator-cli:v4.3.0 generate -i http://host.docker.internal:4300/swagger/v1/swagger.json?format=openapi -g typescript-angular -o /local/src/app/generated/player-api --additional-properties ngVersion=12.1 --additional-properties useRxJS6=true --additional-properties modelPropertyNaming=original --type-mappings=DateTime=Date --skip-validate-spec"
},
"scriptComments": {
"docker:stack": "// Runs the entire player stack",
"docker:stack:proxy": "// Runs the entire caster player with proxy settings",
"docker:destroy": "// Destroys the docker player, data retained"
},
"private": true,
"dependencies": {
"@angular/animations": "^21.2.1",
"@angular/cdk": "^21.2.1",
"@angular/common": "^21.2.1",
"@angular/compiler": "^21.2.1",
"@angular/core": "^21.2.1",
"@angular/forms": "^21.2.1",
"@angular/localize": "^21.2.1",
"@angular/material": "^21.2.1",
"@angular/platform-browser": "^21.2.1",
"@angular/platform-browser-dynamic": "^21.2.1",
"@angular/router": "^21.2.1",
"@cmusei/crucible-common": "^0.6.0",
"@datorama/akita": "^8.0.1",
"@datorama/akita-ng-router-store": "^8.0.0",
"@material/material-color-utilities": "^0.4.0",
"@mdi/font": "^7.4.47",
"@microsoft/signalr": "^10.0.0",
"@popperjs/core": "^2.11.8",
"angular-resizable-element": "^8.0.1",
"babel-polyfill": "^6.26.0",
"bootstrap": "^5.3.8",
"core-js": "^3.48.0",
"font-awesome": "^4.7.0",
"ng-socket-io": "^0.2.4",
"ng-table-virtual-scroll": "^1.6.1",
"ngx-clipboard": "^16.0.0",
"oidc-client-ts": "^3.4.1",
"rxjs": "^7.8.2",
"rxjs-compat": "^6.6.7",
"tether": "^3.0.2",
"tslib": "^2.8.1",
"zone.js": "^0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.1",
"@angular-devkit/core": "^21.2.1",
"@angular-devkit/schematics": "^21.2.1",
"@angular-eslint/builder": "21.3.0",
"@angular-eslint/eslint-plugin": "21.3.0",
"@angular-eslint/eslint-plugin-template": "21.3.0",
"@angular-eslint/schematics": "21.3.0",
"@angular-eslint/template-parser": "21.3.0",
"@angular/cli": "^21.2.1",
"@angular/compiler-cli": "^21.2.1",
"@angular/language-service": "^21.2.1",
"@datorama/akita-ngdevtools": "^7.0.0",
"@openapitools/openapi-generator-cli": "2.30.2",
"@types/jasmine": "^6.0.0",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.57.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jasmine-core": "^6.0.1",
"jasmine-spec-reporter": "^7.0.0",
"prettier": "^3.8.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
},
"overrides": {
"tslib": "^2.8.1"
}
}