-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.56 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.56 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
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
{
"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",
"packageManager": "yarn@4.18.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'",
"lint:md": "git ls-files '*.[mM][dD]' | xargs -r npx markdownlint-cli2",
"fix:ts": "ng lint --fix",
"fix:scss": "npx stylelint --fix '**/*.scss'",
"fix:md": "git ls-files '*.[mM][dD]' | xargs -r npx markdownlint-cli2 --fix",
"e2e": "ng e2e",
"extract-translations": "transloco-keys-manager extract --sort --unflat --remove-extra-keys --emit-error-on-extra-keys --default-value=null && node -e \"const fs=require('fs');for(const file of fs.readdirSync('src/assets/i18n').filter((name)=>name.endsWith('.json'))){fs.appendFileSync('src/assets/i18n/'+file,'\\n');}\"",
"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 snyk-protect",
"i18n:extract": "transloco-keys-manager extract",
"i18n:find": "transloco-keys-manager find"
},
"private": true,
"dependencies": {
"@angular/animations": "22.1.5",
"@angular/cdk": "22.1.5",
"@angular/common": "22.1.5",
"@angular/compiler": "22.1.5",
"@angular/core": "22.1.5",
"@angular/forms": "22.1.5",
"@angular/localize": "22.1.5",
"@angular/material": "22.1.5",
"@angular/platform-browser": "22.1.5",
"@angular/platform-browser-dynamic": "22.1.5",
"@angular/router": "22.1.5",
"@auth0/angular-jwt": "5.2.0",
"@jsverse/transloco": "8.4.0",
"@jsverse/transloco-keys-manager": "8.1.1",
"@jsverse/transloco-utils": "8.4.0",
"@ngbracket/ngx-layout": "22.0.1",
"@ngrx/effects": "22.0.0",
"@ngrx/entity": "22.0.0",
"@ngrx/operators": "22.0.0",
"@ngrx/router-store": "22.0.0",
"@ngrx/store": "22.0.0",
"@ngrx/store-devtools": "22.0.0",
"@snyk/protect": "1.1307.0",
"luxon": "3.7.2",
"luxon-angular": "6.0.0",
"ngrx-store-localstorage": "20.1.0",
"ngx-material-luxon": "1.1.1",
"ngx-webstorage": "22.0.0",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "22.1.7",
"@angular-eslint/builder": "22.2.0",
"@angular-eslint/eslint-plugin": "22.2.0",
"@angular-eslint/eslint-plugin-template": "22.2.0",
"@angular-eslint/schematics": "22.2.0",
"@angular-eslint/template-parser": "22.2.0",
"@angular/cli": "22.1.7",
"@angular/compiler-cli": "22.1.5",
"@angular/language-service": "22.1.5",
"@bartholomej/ngx-translate-extract": "8.0.2",
"@eslint/js": "10.0.1",
"@ngrx/eslint-plugin": "22.0.0",
"@schematics/angular": "22.1.7",
"@stylistic/eslint-plugin": "5.10.0",
"@types/jasmine": "6.0.0",
"@types/jasminewd2": "2.0.13",
"@types/luxon": "3.7.5",
"@types/node": "26.4.1",
"@typescript-eslint/eslint-plugin": "8.69.0",
"@typescript-eslint/parser": "8.69.0",
"@typescript-eslint/types": "8.69.0",
"@typescript-eslint/utils": "8.69.0",
"angular-eslint": "22.2.0",
"eslint": "10.9.1",
"eslint-plugin-import": "2.32.0",
"istanbul-lib-instrument": "6.0.3",
"jasmine-core": "7.0.2",
"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.3.0",
"ngx-build-plus": "20.0.0",
"postcss": "8.5.28",
"prettier": "3.9.6",
"protractor": "7.0.0",
"stylelint": "17.15.0",
"stylelint-config-sass-guidelines": "13.0.0",
"stylelint-config-standard-scss": "17.0.0",
"stylelint-scss": "7.2.0",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"typescript-eslint": "8.69.0"
},
"snyk": true
}