-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
111 lines (111 loc) · 4.06 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
{
"name": "angular-ngrx-frontend",
"description": "Angular NgRx powered frontend template project",
"author": "Tarmo Leppänen",
"license": "MIT",
"homepage": "https://github.com/tarlepp/angular-ngrx-frontend",
"keywords": [
"angular",
"spa",
"ngrx"
],
"bugs": {
"url": "https://github.com/tarlepp/angular-ngrx-frontend/issues"
},
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --ssl true --ssl-key docker/ssl/tls.key --ssl-cert docker/ssl/tls.crt --host 0.0.0.0 --disable-host-check",
"start-prod": "ng serve --host 0.0.0.0 --disable-host-check --configuration=localProduction",
"build": "ng build",
"build-prod": "ng build --configuration=production",
"test": "ng test",
"lint:ts": "ng lint",
"lint:scss": "npx stylelint '**/*.scss'",
"fix:ts": "ng lint --fix",
"fix:scss": "npx stylelint --fix '**/*.scss'",
"e2e": "ng e2e",
"extract-translations": "transloco-keys-manager extract --sort --unflat --remove-extra-keys --emit-error-on-extra-keys --default-value=null && for files in src/assets/i18n/*.json; do echo >> $files; done;",
"check-translations": "sed -i 's/_/__/g; s/: null/x_x/g; s/: \"--- MISSING TRANSLATION ---\"/: null/g; s/x_x/: \"--- MISSING TRANSLATION ---\"/g; s/__/_/g' ./src/assets/i18n/*.json && git diff --exit-code ./src/assets/i18n/*.json",
"postinstall": "node version.js",
"snyk-protect": "snyk-protect",
"prepare": "yarn run snyk-protect",
"i18n:extract": "transloco-keys-manager extract",
"i18n:find": "transloco-keys-manager find"
},
"private": true,
"dependencies": {
"@angular/animations": "19.0.5",
"@angular/cdk": "19.0.4",
"@angular/common": "19.0.5",
"@angular/compiler": "19.0.5",
"@angular/core": "19.0.5",
"@angular/forms": "19.0.5",
"@angular/localize": "19.0.5",
"@angular/material": "19.0.4",
"@angular/platform-browser": "19.0.5",
"@angular/platform-browser-dynamic": "19.0.5",
"@angular/router": "19.0.5",
"@auth0/angular-jwt": "5.2.0",
"@jsverse/transloco": "7.5.1",
"@jsverse/transloco-keys-manager": "6.1.0",
"@jsverse/transloco-utils": "7.0.2",
"@ngbracket/ngx-layout": "19.0.0",
"@ngrx/effects": "19.0.0",
"@ngrx/entity": "19.0.0",
"@ngrx/operators": "^19.0.0",
"@ngrx/router-store": "19.0.0",
"@ngrx/store": "19.0.0",
"@ngrx/store-devtools": "19.0.0",
"@snyk/protect": "1.1294.3",
"luxon": "3.5.0",
"luxon-angular": "6.0.0",
"ngrx-store-localstorage": "18.0.0",
"ngx-material-luxon": "1.1.1",
"ngx-webstorage": "19.0.1",
"rxjs": "7.8.1",
"tslib": "2.8.1",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.0.6",
"@angular-eslint/builder": "18.4.2",
"@angular-eslint/eslint-plugin": "18.4.2",
"@angular-eslint/eslint-plugin-template": "18.4.2",
"@angular-eslint/schematics": "18.4.2",
"@angular-eslint/template-parser": "18.4.2",
"@angular/cli": "19.0.6",
"@angular/compiler-cli": "19.0.5",
"@angular/language-service": "19.0.5",
"@bartholomej/ngx-translate-extract": "8.0.2",
"@types/jasmine": "5.1.5",
"@types/jasminewd2": "2.0.13",
"@types/luxon": "3.4.2",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "7.16.0",
"@typescript-eslint/parser": "7.16.0",
"eslint": "8.57.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "48.11.0",
"eslint-plugin-ngrx": "2.1.4",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "5.5.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.4",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"ngx-build-plus": "18.0.0",
"postcss": "8.4.49",
"protractor": "7.0.0",
"stylelint": "16.12.0",
"stylelint-config-sass-guidelines": "12.1.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-scss": "6.10.0",
"ts-node": "10.9.2",
"typescript": "5.6.3"
},
"snyk": true
}