-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.65 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.65 KB
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": "blueprint-angular",
"version": "0.0.0",
"scripts": {
"build": "ng build",
"lint": "ng lint",
"ng": "ng",
"prepare": "husky install",
"prettier": "prettier --write \"{src,cypress}/**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"prettier:check": "prettier --check \"{src,cypress}/**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
"start": "ng serve",
"test": "ng test",
"test:ci": "jest",
"watch": "ng build --watch --configuration development",
"e2e": "ng e2e",
"e2e:ci": "ng run blueprint-angular:cypress-run:production",
"e2e:local": "ng run blueprint-angular:cypress-open",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"engines": {
"node": "^16.13.0",
"npm": "^8.1.0"
},
"private": true,
"dependencies": {
"@angular/animations": "14.0.3",
"@angular/cdk": "14.0.3",
"@angular/common": "14.0.3",
"@angular/compiler": "14.0.3",
"@angular/core": "14.0.3",
"@angular/forms": "14.0.3",
"@angular/material": "14.0.3",
"@angular/platform-browser": "14.0.3",
"@angular/platform-browser-dynamic": "14.0.3",
"@angular/router": "14.0.3",
"class-transformer": "^0.5.1",
"event-source-polyfill": "^1.0.31",
"keycloak-angular": "10.0.1",
"keycloak-js": "18.0.1",
"reflect-metadata": "^0.1.13",
"rxjs": "7.5.5",
"tslib": "2.4.0",
"zone.js": "0.11.6"
},
"devDependencies": {
"@angular-builders/jest": "14.0.0",
"@angular-devkit/build-angular": "14.0.3",
"@angular-eslint/builder": "14.0.0",
"@angular-eslint/eslint-plugin": "14.0.0",
"@angular-eslint/eslint-plugin-template": "14.0.0",
"@angular-eslint/schematics": "14.0.0",
"@angular-eslint/template-parser": "14.0.0",
"@angular/cli": "14.0.3",
"@angular/compiler-cli": "14.0.3",
"@commitlint/cli": "17.0.2",
"@commitlint/config-angular": "17.0.0",
"@cypress/schematic": "2.0.0",
"@types/event-source-polyfill": "^1.0.0",
"@types/jest": "28.1.3",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"commitlint": "17.0.2",
"cypress": "10.2.0",
"cypress-log-to-output": "1.1.2",
"cypress-terminal-report": "4.0.1",
"eslint": "8.18.0",
"husky": "8.0.1",
"jest": "28.1.1",
"jest-junit": "13.2.0",
"lint-staged": "13.0.2",
"prettier": "2.7.1",
"semantic-release": "19.0.3",
"tslint-config-prettier": "1.18.0",
"typescript": "4.7.4"
},
"lint-staged": {
"*.{js,json,css,scss,less,md,ts,html,component.html}": [
"prettier --write"
],
"*.js": "eslint --cache --fix"
}
}