This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
forked from etn-ccis/blui-angular-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.86 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
{
"name": "@blui-lab/angular",
"version": "1.0.0-alpha.3",
"scripts": {
"ng": "ng",
"start": "ng serve demo -c development --open",
"start:npm": "ng serve demo -c npm --open",
"build:demo": "rm -rf ./dist && ng build demo -c production",
"build:lab": "bash scripts/build.sh",
"test": "ng test demo",
"test:ci": "ng test demo --watch false",
"lint": "eslint \"src/**/**.ts\"",
"lint:fix": "eslint \"src/**/**.ts\" --fix",
"prettier": "prettier \"src/**/**.{ts,js,json,css,scss,html}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,js,json,css,scss,html}\" --check",
"npm-check-updates": "npm-check-updates --target minor -u",
"generate:licenses": "npm-license-crawler -onlyDirectDependencies -json LICENSES.json",
"test:artifacts": "bash scripts/testArtifacts.sh",
"precommit": "yarn && yarn prettier:check && yarn lint && yarn test:ci && yarn build:lab && yarn test:artifacts",
"publish:package": "cd dist && rm -f *.tgz && set npm_config_yes=true && npx -p @brightlayer-ui/publish blui-publish",
"tag:package": "npx -p @brightlayer-ui/tag blui-tag -s -blui-lab-angular"
},
"peerDependencies": {
"@angular/material": "^13.0.0",
"@angular/cdk": "^13.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.3.9",
"@angular/animations": "^13.3.11",
"@angular/cdk": "^13.3.9",
"@angular/cli": "^13.3.9",
"@angular/compiler-cli": "^13.3.11",
"@angular/common": "^13.3.11",
"@angular/compiler": "^13.3.11",
"@angular/core": "^13.3.11",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "^13.3.11",
"@angular/material": "^13.3.9",
"@angular/platform-browser": "^13.3.11",
"@angular/platform-browser-dynamic": "^13.3.11",
"@angular/router": "^13.3.11",
"@brightlayer-ui/angular-components": "^7.0.2",
"@brightlayer-ui/angular-themes": "^7.0.1",
"@brightlayer-ui/colors": "^3.1.1",
"@brightlayer-ui/eslint-config": "^2.0.5",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@types/jasmine": "~3.10.6",
"@types/node": "^12.20.55",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"eslint": "8.20.0",
"eslint-config-prettier": "^8.5.0",
"jasmine-core": "~3.99.1",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~4.0.2",
"karma-jasmine-html-reporter": "^1.7.0",
"ng-packagr": "^13.3.1",
"npm-license-crawler": "^0.2.1",
"npm-check-updates": "^15.3.4",
"prettier": "^2.7.1",
"rxjs": "~6.6.7",
"tslib": "^2.4.0",
"typescript": "~4.6.4",
"zone.js": "~0.11.7"
},
"prettier": "@brightlayer-ui/prettier-config"
}