-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 3.33 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 3.33 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
{
"name": "alloy",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"swagger:gen": "curl --insecure http://localhost:4402/swagger/v1/swagger.json --output swagger.json && npx openapi-generator-cli generate -i ./swagger.json -g typescript-angular -o src/app/generated/alloy.api --additional-properties ngVersion=9.0.2 --additional-properties useRxJS6=true --additional-properties modelPropertyNaming=original --type-mappings=DateTime=Date",
"swagger:gen-win": "docker run --rm -v %CD%:/local openapitools/openapi-generator-cli:v4.3.0 generate -i http://host.docker.internal:4402/swagger/v1/swagger.json?format=openapi -g typescript-angular -o /local/src/app/generated/alloy.api --additional-properties ngVersion=9.0.2 --additional-properties useRxJS6=true --additional-properties modelPropertyNaming=original --type-mappings=DateTime=Date",
"docker:init": "docker network create identity --driver=overlay",
"docker:stack": "npm run docker:stack:identity && npm run docker:stack:api",
"docker:stack:api": "docker stack deploy -c docker-compose.yml -c docker/compose/api.yml alloy_stack",
"docker:stack:identity": "docker stack deploy -c docker-compose.yml -c docker/compose/identity.yml identity_stack",
"docker:destroy": "docker stack rm alloy_stack identity_stack"
},
"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.4.3",
"@material/material-color-utilities": "^0.4.0",
"@datorama/akita": "8.0.0",
"@datorama/akita-ng-router-store": "8.0.0",
"@datorama/akita-ngdevtools": "^7.0.0",
"@fortawesome/fontawesome-free": "^7.2.0",
"@mdi/font": "7.4.47",
"@microsoft/signalr": "^8.0.17",
"bootstrap": "^5.3.3",
"bootstrap-scss": "^5.2.2",
"core-js": "^3.30.1",
"ini": "^4.0.0",
"luxon": "^3.2.1",
"material-design-icons": "^3.0.1",
"ngx-clipboard": "^15.1.0",
"oidc-client-ts": "^2.4.0",
"rxjs": "^7.8.1",
"tslib": "2.4.1",
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^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",
"@openapitools/openapi-generator-cli": "^2.30.2",
"@types/jasmine": "^4.3.1",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^25.4.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.57.0",
"@typescript-eslint/utils": "^8.54.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"jasmine-core": "^4.6.0",
"jasmine-spec-reporter": "^7.0.0",
"prettier": "^2.3.2",
"ts-node": "^10.9.1",
"typescript": "^5.9.3"
}
}