-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 3.57 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 3.57 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
{
"name": "gallery-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "eslint -c .eslintrc.js --ext .ts src/",
"e2e": "ng e2e",
"swagger-gen": "curl --insecure http://host.docker.internal:4722/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/api --additional-properties ngVersion=11.2.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:v5.1.0 generate -i http://host.docker.internal:4722/swagger/v1/swagger.json -g typescript-angular -o /local/src/app/generated/api --additional-properties ngVersion=11.2.1 --additional-properties useRxJS6=true --additional-properties modelPropertyNaming=original --type-mappings=DateTime=Date --skip-validate-spec",
"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 gallery_stack",
"docker:stack:identity": "docker stack deploy -c docker-compose.yml -c docker/compose/identity.yml identity_stack",
"docker:destroy": "docker stack rm gallery_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/material": "^21.2.1",
"@angular/platform-browser": "^21.2.1",
"@angular/router": "^21.2.1",
"@cmusei/crucible-common": "0.6.0",
"@datorama/akita": "^8.0.0",
"@datorama/akita-ng-router-store": "^7.0.0",
"@datorama/akita-ngdevtools": "^7.0.0",
"@fortawesome/fontawesome-free": "^6.7.2",
"@kolkov/angular-editor": "^3.0.0-beta.2",
"@material/material-color-utilities": "^0.4.0",
"@mdi/font": "^7.2.96",
"@microsoft/signalr": "^8.0.7",
"@ngxmc/datetime-picker": "^20.1.0",
"ajv": "^8.6.0",
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"bootstrap-scss": "^5.2.2",
"core-js": "^3.14.0",
"glob-parent": "^6.0.1",
"ini": "^3.0.1",
"lodash": "^4.17.21",
"luxon": "^1.28.1",
"material-design-icons": "^3.0.1",
"ngx-clipboard": "^15.1.0",
"node-forge": "^1.3.1",
"oidc-client-ts": "^2.4.0",
"rxjs": "^7.8.1",
"rxjs-compat": "^6.6.7",
"tslib": "^2.2.0",
"zone.js": "~0.15.1"
},
"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": "1.0.18-3.2.0",
"@types/jasmine": "~3.7.7",
"@types/jasminewd2": "~2.0.9",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"eslint-plugin-import": "^2.32.0",
"jasmine-core": "3.8",
"jasmine-spec-reporter": "~7.0.0",
"ts-node": "~10.0.0",
"typescript": "~5.9.3"
}
}