-
-
Notifications
You must be signed in to change notification settings - Fork 223
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.65 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
{
"name": "transloco-nx",
"version": "0.0.0",
"license": "MIT",
"homepage": "https://jsverse.gitbook.io/transloco/",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"prepare": "husky",
"commit": "git-cz",
"start": "nx run transloco-playground:serve",
"build:playground": "nx build transloco-playground --configuration=docs",
"ci:test": "nx run-many --target=test --all",
"ci:build": "nx run-many --target=build --all",
"ci:lint": "nx run-many --target=lint --all",
"ci:e2e": "nx run transloco-playground-e2e:e2e:ci",
"e2e": "nx run transloco-playground-e2e:e2e",
"pre-commit": "node scripts/pre-commit.js && lint-staged --allow-empty",
"release:pkg-pr-new": "npx pkg-pr-new@0.0.54 publish './dist/libs/*'"
},
"dependencies": {
"@angular/animations": "21.2.9",
"@angular/common": "21.2.9",
"@angular/compiler": "21.2.9",
"@angular/core": "21.2.9",
"@angular/forms": "21.2.9",
"@angular/platform-browser": "21.2.9",
"@angular/platform-browser-dynamic": "21.2.9",
"@angular/router": "21.2.9",
"@jsverse/utils": "1.0.0-beta.5",
"@messageformat/core": "3.4.0",
"bootstrap": "5.3.1",
"chalk": "4.1.2",
"chokidar": "3.5.2",
"command-line-args": "5.2.0",
"cosmiconfig": "^8.1.3",
"find-duplicated-property-keys": "1.2.9",
"flat": "6.0.1",
"fs-extra": "11.1.1",
"glob": "10.3.3",
"rxjs": "7.8.0",
"tslib": "2.3.1",
"zone.js": "0.16.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "21.2.9",
"@angular-eslint/eslint-plugin": "21.4.0",
"@angular-eslint/eslint-plugin-template": "21.4.0",
"@angular-eslint/template-parser": "21.4.0",
"@angular/cli": "21.2.16",
"@angular/compiler-cli": "21.2.9",
"@angular/language-service": "21.2.9",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@ngneat/spectator": "21.0.1",
"@nx/angular": "22.7.5",
"@nx/eslint": "22.7.5",
"@nx/eslint-plugin": "22.7.5",
"@nx/jest": "22.7.5",
"@nx/js": "22.7.5",
"@nx/module-federation": "22.7.5",
"@nx/playwright": "22.7.5",
"@nx/workspace": "22.7.5",
"@playwright/test": "1.61.0",
"@swc-node/core": "1.13.1",
"@swc-node/register": "1.11.1",
"@swc/core": "1.13.5",
"@types/command-line-args": "5.2.0",
"@types/find-duplicated-property-keys": "1.1.3",
"@types/fs-extra": "11.0.4",
"@types/jasmine": "5.1.4",
"@types/jest": "30.0.0",
"@types/node": "24.13.2",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"@typescript-eslint/utils": "7.18.0",
"autoprefixer": "^10.4.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "8.57.0",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"git-cz": "4.9.0",
"husky": "9.0.11",
"jasmine-core": "5.1.2",
"jasmine-spec-reporter": "7.0.0",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"jest-environment-node": "30.4.1",
"jest-preset-angular": "16.0.0",
"karma": "6.4.3",
"karma-chrome-launcher": "3.2.0",
"karma-coverage": "2.2.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "15.2.7",
"memfs": "4.17.0",
"ng-packagr": "21.2.5",
"nx": "22.7.5",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"ts-jest": "29.4.9",
"ts-mocks": "3.0.1",
"ts-node": "10.9.1",
"typescript": "5.9.3",
"verdaccio": "6.7.2"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"nx": {
"includedScripts": []
}
}