-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
97 lines (97 loc) · 3.16 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
93
94
95
96
97
{
"name": "oblique-galaxy",
"version": "0.1.1",
"contributors": [
"Paulo Lopes <[email protected]>",
"Etienne Frank <[email protected]>"
],
"scripts": {
"start": "npm run check-updates && ng serve",
"build": "ng build",
"build-storybook": "ng run oblique-galaxy:build-storybook",
"watch": "ng build --watch --configuration development",
"check-updates": "npm outdated --json > projects/oblique-galaxy/src/lib/outdated-report.json || true",
"test": "ng test oblique-galaxy",
"lint": "npm run format-write && ng lint && npm run repository-lint",
"repository-lint": "./scripts/base-folder-lint.sh && ./scripts/codeowner-lint.sh",
"format": "prettier . --check",
"format-write": "prettier . --write",
"prepare": "husky",
"commitlint": "commitlint --edit"
},
"engines": {
"node": "~20.11.0"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.7",
"@angular/cdk": "^18.2.7",
"@angular/common": "^18.2.7",
"@angular/compiler": "^18.2.7",
"@angular/core": "^18.2.7",
"@angular/forms": "^18.2.7",
"@angular/material": "^18.2.7",
"@angular/platform-browser": "^18.2.7",
"@angular/platform-browser-dynamic": "^18.2.7",
"@angular/router": "^18.2.7",
"@angular/service-worker": "^18.2.7",
"@ngx-translate/core": "^15.0.0",
"@oblique/oblique": "^12.0.0",
"@popperjs/core": "^2.11.8",
"angular-oauth2-oidc": "^17.0.2",
"jwt-decode": "^4.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.3",
"zone.js": "~0.14.7"
},
"devDependencies": {
"@angular-builders/jest": "^18.0.0",
"@angular-devkit/build-angular": "^18.2.7",
"@angular-eslint/builder": "^18.3.1",
"@angular-eslint/eslint-plugin": "18.3.1",
"@angular-eslint/eslint-plugin-template": "18.3.1",
"@angular-eslint/schematics": "^18.3.1",
"@angular-eslint/template-parser": "18.3.1",
"@angular/cli": "^18.2.7",
"@angular/compiler-cli": "^18.2.7",
"@chromatic-com/storybook": "^2.0.2",
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.1.0",
"@compodoc/compodoc": "^1.1.25",
"@storybook/addon-docs": "^8.2.9",
"@storybook/addon-essentials": "^8.2.9",
"@storybook/addon-interactions": "^8.2.9",
"@storybook/addon-links": "^8.2.9",
"@storybook/angular": "^8.2.9",
"@storybook/blocks": "^8.2.9",
"@storybook/manager-api": "^8.3.5",
"@storybook/test": "^8.2.9",
"@storybook/theming": "^8.3.5",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "8.8.0",
"browser-sync": "^3.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-storybook": "^0.9.0",
"husky": "^9.1.4",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ng-packagr": "^18.2.1",
"prettier": "^3.3.3",
"storybook": "^8.2.9",
"typescript": "~5.4.5"
},
"jestSonar": {
"reportPath": "./coverage/sonarQube",
"reportFile": "sqr.xml",
"indent": 4,
"sonar56x": true
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}