-
-
Notifications
You must be signed in to change notification settings - Fork 196
/
package.json
115 lines (115 loc) · 3.51 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
{
"name": "transloco-nx",
"version": "0.0.0",
"license": "MIT",
"workspaces": [
"docs"
],
"scripts": {
"prepare": "husky",
"commit": "git-cz",
"start": "nx run transloco-playground:serve",
"start:docs": "npm start --prefix=docs",
"build": "node scripts/build.mjs",
"build:playground-docs": "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"
},
"dependencies": {
"@angular/animations": "18.0.4",
"@angular/common": "18.0.4",
"@angular/compiler": "18.0.4",
"@angular/core": "18.0.4",
"@angular/forms": "18.0.4",
"@angular/platform-browser": "18.0.4",
"@angular/platform-browser-dynamic": "18.0.4",
"@angular/router": "18.0.4",
"@messageformat/core": "3.0.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",
"lodash.kebabcase": "4.1.1",
"replace-in-file": "^7.0.1",
"rxjs": "7.8.0",
"tslib": "2.3.1",
"zone.js": "0.14.7"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.0.5",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "~18.0.0",
"@angular/compiler-cli": "18.0.4",
"@angular/language-service": "18.0.4",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@ngneat/spectator": "19.0.0",
"@nx/angular": "19.3.0",
"@nx/cypress": "19.3.0",
"@nx/eslint": "19.3.0",
"@nx/eslint-plugin": "19.3.0",
"@nx/jest": "19.3.0",
"@nx/js": "19.3.0",
"@nx/workspace": "19.3.0",
"@swc-node/core": "1.13.1",
"@swc-node/register": "1.9.2",
"@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": "29.5.12",
"@types/node": "20.14.7",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"@typescript-eslint/utils": "^8.0.0-alpha.28",
"autoprefixer": "^10.4.0",
"cheerio": "^1.0.0-rc.12",
"cypress": "13.9.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-cypress": "2.15.1",
"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": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"jest-preset-angular": "14.1.1",
"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",
"ng-packagr": "18.0.0",
"nx": "19.3.0",
"prettier": "3.3.2",
"rimraf": "5.0.7",
"ts-jest": "29.1.5",
"ts-mocks": "3.0.1",
"typescript": "5.4.5",
"verdaccio": "5.31.1"
},
"config": {
"commitizen": {
"path": "git-cz"
}
},
"nx": {
"includedScripts": []
}
}