-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
84 lines (84 loc) · 2.99 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
{
"name": "ngx-translate-plugins",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "yarn run build:lib && yarn run build:app",
"build:app": "ng build",
"build:lib": "ng build testing",
"build:lib:prod": "yarn run build:lib --configuration production",
"clean": "rimraf dist coverage",
"coverage:app": "yarn run test:app --code-coverage true",
"coverage:lib": "yarn run test:lib --code-coverage true",
"pretest": "yarn run build:lib",
"test": "yarn run test:lib --watch false && yarn run test:app --watch false",
"test:app": "ng test --project=ngx-translate-plugins",
"test:lib": "ng test --project=testing",
"pretest:headless": "yarn run build:lib",
"test:headless": "yarn run test:lib:headless --watch false && yarn run test:app:headless --watch false",
"test:app:headless": "ng run ngx-translate-plugins:test:headless",
"test:lib:headless": "ng run testing:test:headless",
"lint": "yarn run lint:lib && yarn run lint:app",
"lint:app": "ng lint --project=ngx-translate-plugins",
"lint:lib": "ng lint --project=testing",
"e2e": "ng e2e",
"precommit": "lint-staged -r"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.5",
"@angular/common": "^16.0.5",
"@angular/compiler": "^16.0.5",
"@angular/core": "^16.0.5",
"@angular/forms": "^16.0.5",
"@angular/platform-browser": "^16.0.5",
"@angular/platform-browser-dynamic": "^16.0.5",
"@angular/router": "^16.0.5",
"@messageformat/core": "3.0.0",
"@ngx-translate/core": "^15.0.0",
"@ngx-translate/http-loader": "^8.0.0",
"core-js": "^3.0.0",
"messageformat": "^2.0.2",
"ngx-translate-messageformat-compiler": "^6.4.0",
"rxjs": "^7.4.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.0.5",
"@angular-eslint/builder": "16.0.3",
"@angular-eslint/eslint-plugin": "16.0.3",
"@angular-eslint/eslint-plugin-template": "16.0.3",
"@angular-eslint/schematics": "16.0.3",
"@angular-eslint/template-parser": "16.0.3",
"@angular/cli": "^16.0.5",
"@angular/compiler-cli": "^16.0.5",
"@angular/language-service": "^16.0.5",
"@types/jasmine": "^3.10.2",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"codelyzer": "^6.0.0",
"eslint": "^8.39.0",
"husky": "^7.0.4",
"jasmine-core": "^3.10.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.8",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"lint-staged": "^12.0.2",
"ng-packagr": "^16.0.1",
"prettier": "^2.4.1",
"protractor": "~7.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"tsickle": "^0.43.0",
"tslib": "^2.0.0",
"tslint": "~6.1.0",
"typescript": "^4.9.5",
"yarn": "^1.17.3"
}
}