-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
92 lines (92 loc) · 3.09 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
{
"name": "angular-design-patterns",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve -c es5",
"build": "ng build",
"test": "ng test",
"test:ci": "ng test --watch false",
"lint": "eslint \"src/**/**.ts\"",
"start:cytest": "ng e2e",
"lint:fix": "eslint \"src/**/**.ts\" --fix",
"prettier": "prettier \"src/**/**.{ts,js,json,css,scss,html}\" --write",
"prettier:check": "prettier \"src/**/**.{ts,tsx,js,jsx,json,css,scss,html}\" --check",
"cy:run": "cypress run",
"cypress:open": "cypress open",
"cytest": "start-server-and-test start:cytest http://localhost:4200 cy:run",
"coverage": "ng test --browsers=ChromeHeadless --no-watch --code-coverage"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.0.0",
"@angular/cdk": "^13.0.0",
"@angular/common": "^13.0.0",
"@angular/compiler": "^13.0.0",
"@angular/core": "^13.0.0",
"@angular/flex-layout": "^13.0.0-beta.38",
"@angular/forms": "^13.0.0",
"@angular/material": "^13.0.0",
"@angular/platform-browser": "^13.0.0",
"@angular/platform-browser-dynamic": "^13.0.0",
"@angular/router": "^13.0.0",
"@brightlayer-ui/angular-components": "^7.0.3",
"@brightlayer-ui/angular-themes": "^7.0.0",
"@brightlayer-ui/colors": "^3.0.1",
"@brightlayer-ui/icons": "^1.8.1",
"@brightlayer-ui/icons-svg": "^1.8.1",
"@brightlayer-ui/ng-progress-icons": "^1.2.1",
"@netbasal/ngx-content-loader": "3.0.0",
"@ngx-translate/core": "^14.0.0",
"add": "^2.0.6",
"color": "^4.2.1",
"core-js": "^3.30.1",
"placeholder-loading": "^0.6.0",
"rxjs": "~6.6.0",
"sass": "1.71.1",
"tslib": "^2.6.2",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.1.0",
"@angular-devkit/build-angular": "^13.0.0",
"@angular/cli": "^13.0.0",
"@angular/compiler-cli": "^13.0.0",
"@angular/language-service": "~13.2.3",
"@briebug/cypress-schematic": "^5.0.0",
"@brightlayer-ui/eslint-config": "^3.0.0",
"@brightlayer-ui/prettier-config": "^1.0.3",
"@cypress/code-coverage": "^3.10.8",
"@types/jasmine": "~5.1.5",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"codelyzer": "^6.0.0",
"cypress": "^9.5.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^9.1.0",
"firebase-tools": "^13.20.2",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "~5.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.1",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ngx-build-plus": "^13.0.0",
"prettier": "^2.5.1",
"protractor": "~7.0.0",
"start-server-and-test": "^2.0.0",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.6.4",
"wait-on": "^6.0.1"
},
"prettier": "@brightlayer-ui/prettier-config",
"nyc": {
"report-dir": "cypress-coverage"
}
}