This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
forked from etn-ccis/blui-angular-cli-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.93 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
{
"name": "angular-cli-templates",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start:blank": "ng serve -c blank",
"start:routing": "ng serve -c routing",
"start:auth-workflow": "ng serve -c auth-workflow",
"build": "ng build",
"test": "ng test",
"test:ci": "ng test --watch false",
"lint": "eslint \"src/**/**.ts\"",
"e2e": "ng e2e",
"lint:fix": "eslint \"src/**/**.ts\" --fix",
"prettier": "prettier \"src/**/**.{ts,js,json,css,scss,html,md}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,js,json,css,scss,html,md}\" --check",
"coverage": "yarn test --no-watch --code-coverage",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json",
"precommit": "yarn && yarn prettier && yarn lint && yarn test:ci && yarn build && yarn generate:licenses"
},
"private": true,
"dependencies": {
"@angular-devkit/build-angular": "^14.2.9",
"@angular/animations": "^14.2.10",
"@angular/cdk": "^14.2.7",
"@angular/cli": "^14.2.9",
"@angular/common": "^14.2.10",
"@angular/compiler": "^14.2.10",
"@angular/compiler-cli": "^14.2.10",
"@angular/core": "^14.2.10",
"@angular/forms": "^14.2.10",
"@angular/material": "^14.2.7",
"@angular/platform-browser": "^14.2.10",
"@angular/platform-browser-dynamic": "^14.2.10",
"@angular/router": "^14.2.10",
"@brightlayer-ui/angular-auth-workflow": "^4.0.0",
"@brightlayer-ui/angular-components": "^8.0.0",
"@brightlayer-ui/angular-themes": "^8.0.0",
"@brightlayer-ui/colors": "^3.1.1",
"@brightlayer-ui/icons": "^1.11.0",
"@brightlayer-ui/icons-svg": "^1.11.0",
"@brightlayer-ui/ng-progress-icons": "^1.2.1",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.9",
"@angular/cli": "^14.2.9",
"@angular/compiler-cli": "^14.2.10",
"@brightlayer-ui/eslint-config": "^3.0.1",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@types/jasmine": "~3.10.6",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"codecov": "^3.8.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^1.7.0",
"npm-license-crawler": "^0.2.1",
"prettier": "^2.7.1",
"ts-node": "~10.2.1",
"typescript": "4.8.4"
},
"prettier": "@brightlayer-ui/prettier-config"
}