-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 3.67 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
{
"name": "bellum-gens",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "concurrently --kill-others \"npm run start-bellumgens\" \"npm run start-ebleague\"",
"start-bellumgens": "ng serve bellum-gens --port=4200 -o",
"start-ebleague": "ng serve eb-league --port=4201 -o",
"build": "npm run build:common && npm run build:apps",
"build:common": "ng build bellum-gens-common --configuration production",
"build:bellumgens": "ng build bellum-gens --configuration production",
"build:ebleague": "ng build eb-league --configuration production",
"build:apps": "npm run build:bellumgens && npm run build:ebleague",
"test": "ng test",
"test:prod": "ng test --watch=false --no-progress --code-coverage --browsers=ChromeHeadlessCI",
"lint": "ng lint",
"e2e": "ng e2e",
"dev:ssr:bellumgens": "ng run bellum-gens:serve-ssr",
"dev:ssr:ebleague": "ng run eb-league:serve-ssr",
"serve:ssr": "concurrently --kill-others \"npm run serve:ssr:bellumgens\" \"npm run serve:ssr:ebleague\"",
"serve:ssr:bellumgens": "node dist/bellumgens/server/server.mjs",
"serve:ssr:ebleague": "node dist/ebleague/server/server.mjs",
"i18n": "npm run i18n:bellumgens && npm run i18n:ebleague",
"i18n:bellumgens": "ng extract-i18n bellum-gens --out-file projects/bellumgens/src/locale/messages.en.xlf",
"i18n:ebleague": "ng extract-i18n eb-league --out-file projects/ebleague/src/locale/messages.en.xlf",
"cypress:open": "concurrently \"ng serve\" \"cypress open --config-file=cypress.config.ts\"",
"cypress:run": "concurrently \"npm run serve:ssr:bellumgens\" \"cypress run --config-file=cypress.config.ts\""
},
"private": true,
"dependencies": {
"@angular/animations": "19.1.2",
"@angular/common": "19.1.2",
"@angular/compiler": "19.1.2",
"@angular/core": "19.1.2",
"@angular/forms": "19.1.2",
"@angular/platform-browser": "19.1.2",
"@angular/platform-browser-dynamic": "19.1.2",
"@angular/platform-server": "19.1.2",
"@angular/router": "19.1.2",
"@angular/service-worker": "19.1.2",
"@angular/ssr": "^19.1.3",
"@igniteui/material-icons-extended": "^3.1.0",
"@infragistics/igniteui-angular": "19.0.6",
"@types/express": "^5.0.0",
"compression": "^1.7.5",
"express": "^4.21.2",
"hammerjs": "^2.0.8",
"igniteui-angular-i18n": "19.0.6",
"minireset.css": "0.0.4",
"rxjs": "^7.8.0",
"tslib": "^2.6.2",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.1.3",
"@angular-eslint/builder": "^19.0.2",
"@angular-eslint/eslint-plugin": "^19.0.2",
"@angular-eslint/eslint-plugin-template": "^19.0.2",
"@angular-eslint/schematics": "^19.0.2",
"@angular-eslint/template-parser": "^19.0.2",
"@angular/cli": "^19.1.3",
"@angular/compiler-cli": "^19.1.2",
"@angular/language-service": "^19.1.2",
"@angular/localize": "^19.1.2",
"@cypress/schematic": "^2.5.0",
"@types/jasmine": "^5.1.5",
"@types/jasminewd2": "^2.0.9",
"@types/node": "^20.11.17",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"browser-sync": "^3.0.0",
"concurrently": "^9.1.2",
"cypress": "^14.0.0",
"eslint": "^9.18.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.5.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"igniteui-cli": "~14.3.6",
"jasmine-core": "~5.5.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-spec-reporter": "^0.0.36",
"ng-packagr": "^19.1.0",
"typescript": "5.6.3"
}
}