-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
171 lines (171 loc) · 6.34 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "board-games",
"version": "0.1.0-SNAPSHOT",
"license": "MIT",
"homepage": "https://github.com/frango9000/board-games",
"bugs": {
"url": "https://kurama-dev.atlassian.net/jira/software/c/projects/UM/boards/1",
"email": "frango9000@gmail.com"
},
"author": {
"name": "Francisco Sanchez",
"email": "frango9000@gmail.com",
"url": "https://frango9000.github.io/"
},
"repository": {
"type": "git",
"url": "https://github.com/frango9000/board-games"
},
"scripts": {
"nx:reset": "nx reset",
"clean": "nx run-many --target=clean",
"start": "nx run-many --target=serve --projects=api,app --parallel=true",
"start:frontend": "nx run app:serve",
"start:backend": "nx run api:serve",
"build": "nx run-many --target=build --all",
"build:frontend": "nx run app:build",
"build:frontend:prod": "yarn run build:frontend --skip-nx-cache --output-path=apps/api/target/classes/static/app --base-href=/app/",
"build:frontend:stats": "yarn run build:frontend --statsJson --namedChunks --outputHashing=none",
"build:frontend:analyze": "yarn run build:frontend:stats && webpack-bundle-analyzer dist/apps/app/stats.json",
"build:backend": "nx run api:build",
"package": "nx run api:package",
"pact": "nx run api:pact:full",
"pact:generate": "yarn run pact:consumer && yarn run pact:producer:generate",
"pact:consumer": "nx run consumer-pact:pact",
"pact:producer": "nx run api:pact",
"pact:producer:generate": "nx run api:pact:generate",
"test": "nx run-many --target=test --all",
"test:frontend": "nx run-many --target=test --all --exclude=api",
"test:frontend:coverage": "yarn run test:frontend --codeCoverage",
"test:backend": "nx run api:test",
"test:backend:ut": "nx run api:ut",
"test:backend:it": "nx run api:it",
"test:merge": "yarn run test:merge:ut && yarn run test:merge:it",
"test:merge:ut": "jrm ./apps/api/target/surefire-reports/merged-uts.xml \"./apps/api/target/surefire-reports/TEST*.xml\"",
"test:merge:it": "jrm ./apps/api/target/failsafe-reports/merged-its.xml \"./apps/api/target/failsafe-reports/TEST*.xml\"",
"test:merge:e2e": "jrm ./coverage/apps/app-e2e/merged-e2e.xml \"./coverage/apps/app-e2e/cypress-junit-*.xml\"",
"scan": "sonar-scanner",
"lint": "nx run-many --target=lint --all",
"e2e": "nx run api:e2e",
"e2e:dev": "nx run app-e2e:e2e",
"e2e:watch": "nx run app-e2e:e2e --watch",
"format": "nx format:write",
"format:all": "nx format:write --all",
"format:check": "nx format:check",
"update": "nx migrate latest",
"migrations": "nx migrate --run-migrations",
"dep-graph": "nx dep-graph",
"docker:dev:up": "docker-compose up -d",
"docker:dev:stop": "docker-compose stop",
"docker:dev:down": "docker-compose down -v",
"validate": "yarn run format:check && yarn run lint && yarn run test && yarn run build:frontend",
"validate:frontend": "yarn run format:check && yarn run lint && yarn run test:frontend && yarn run pact:consumer && yarn run build:frontend",
"validate:backend": "yarn run test:backend",
"validate:e2e": "yarn run format:check && yarn run lint && yarn run test && yarn run e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "17.3.3",
"@angular/cdk": "17.3.3",
"@angular/common": "17.3.3",
"@angular/compiler": "17.3.3",
"@angular/core": "17.3.3",
"@angular/forms": "17.3.3",
"@angular/material": "17.3.3",
"@angular/platform-browser": "17.3.3",
"@angular/platform-browser-dynamic": "17.3.3",
"@angular/router": "17.3.3",
"@ctrl/tinycolor": "4.0.4",
"@ngneat/effects": "2.1.2",
"@ngneat/effects-ng": "3.1.3",
"@ngneat/elf": "2.5.1",
"@ngneat/elf-devtools": "1.3.0",
"@ngneat/elf-entities": "5.0.1",
"@ngneat/elf-persist-state": "1.2.1",
"@ngneat/subscribe": "4.0.0",
"@ngneat/transloco": "6.0.4",
"@ngneat/until-destroy": "10.0.0",
"@ngx-formly/core": "6.3.0",
"@ngx-formly/material": "6.3.0",
"@stomp/rx-stomp": "2.0.0",
"@stomp/stompjs": "^7.0.0",
"jwt-decode": "4.0.0",
"ngx-colors": "3.5.3",
"ngx-toastr": "18.0.0",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"url-template": "3.1.1",
"zone.js": "0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.3.3",
"@angular-devkit/core": "17.3.3",
"@angular-devkit/schematics": "17.3.3",
"@angular-devkit/schematics-cli": "17.3.3",
"@angular-eslint/eslint-plugin": "17.3.0",
"@angular-eslint/eslint-plugin-template": "17.3.0",
"@angular-eslint/template-parser": "17.3.0",
"@angular/cli": "~17.3.3",
"@angular/compiler-cli": "17.3.3",
"@angular/language-service": "17.3.3",
"@jest/reporters": "29.7.0",
"@lensesio/cypress-websocket-testing": "1.0.1",
"@ngneat/elf-cli": "3.1.0",
"@ngneat/elf-cli-ng": "1.0.0",
"@ngx-formly/schematics": "6.3.0",
"@nx/angular": "18.2.3",
"@nx/cypress": "18.2.3",
"@nx/devkit": "18.2.3",
"@nx/eslint": "18.2.3",
"@nx/eslint-plugin": "18.2.3",
"@nx/jest": "18.2.3",
"@nx/js": "18.2.3",
"@nx/node": "18.2.3",
"@nx/workspace": "18.2.3",
"@nxrocks/nx-spring-boot": "10.0.1",
"@pact-foundation/pact": "12.4.0",
"@schematics/angular": "17.3.3",
"@types/jest": "29.5.12",
"@types/jsonwebtoken": "9.0.6",
"@types/node": "^20.12.6",
"@types/sockjs-client": "1.5.4",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"cypress": "^13.7.2",
"dotenv": "16.4.5",
"eslint": "9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-github": "4.10.2",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-extended": "4.0.2",
"jest-junit": "16.0.0",
"jest-preset-angular": "14.0.3",
"jsonwebtoken": "9.0.2",
"junit-report-merger": "6.0.3",
"ng-packagr": "17.3.0",
"npm-check-updates": "16.14.18",
"nx": "18.2.3",
"prettier": "3.2.5",
"rimraf": "5.0.5",
"sonarqube-scanner": "3.4.0",
"ts-jest": "29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.4",
"webpack-bundle-analyzer": "4.10.1"
},
"elf": {
"cli": {
"repoTemplate": "class",
"inlineStoreInClass": false,
"idKey": "id",
"plugins": [
"@ngneat/elf-cli-ng"
]
}
},
"resolutions": {
"jackspeak": "2.1.1"
}
}