-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
116 lines (116 loc) · 3.52 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "hyperdash-angular",
"version": "0.0.0",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"commit": "git-cz",
"build:ci": "ng build --configuration production hyperdash-angular && ng build --configuration production hyperdash-angular-app",
"test:ci:app": "ng test hyperdash-angular-app -i --ci --no-cache",
"test:ci:lib": "ng test hyperdash-angular -i --ci --no-cache",
"test:ci": "npm run lint && npm run test:ci:app && npm run test:ci:lib",
"docs": "compodoc -p projects/hyperdash-angular/tsconfig.lib.json",
"semantic-release": "semantic-release",
"prepare": "husky install"
},
"dependencies": {
"@angular/common": "^18.0.1",
"@angular/core": "^18.0.1",
"@angular/forms": "^18.0.1",
"@angular/platform-browser": "^18.0.1",
"@angular/platform-browser-dynamic": "^18.0.1",
"@hypertrace/hyperdash": "^1.3.0",
"@typescript-eslint/utils": "^8.18.2",
"core-js": "^3.39.0",
"lodash-es": "^4.17.21",
"rxjs": "^6.6.7",
"tslib": "^2.8.1",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-builders/jest": "^18.0.0",
"@angular-devkit/build-angular": "^18.0.2",
"@angular-eslint/builder": "^19.0.2",
"@angular-eslint/eslint-plugin": "19.0.2",
"@angular-eslint/eslint-plugin-template": "19.0.2",
"@angular-eslint/schematics": "^18.4.3",
"@angular-eslint/template-parser": "18.4.3",
"@angular/animations": "^18.0.1",
"@angular/cli": "^18.0.2",
"@angular/compiler": "^18.0.1",
"@angular/compiler-cli": "^18.0.1",
"@angular/language-service": "^18.0.1",
"@angular/router": "^18.0.1",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@compodoc/compodoc": "^1.1.26",
"@ngneat/spectator": "^19.3.0",
"@types/jest": "^29.0.0",
"@types/lodash-es": "^4.17.12",
"@types/node": "^22.10.2",
"@types/webpack-env": "^1.18.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"codelyzer": "^6.0.2",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"eslint-plugin-no-null": "1.0.2",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-unicorn": "56.0.1",
"husky": "^9.1.7",
"jest": "^29.5.0",
"jest-config": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"jest-junit": "16.0.0",
"jest-preset-angular": "^14.4.2",
"lodash": "^4.17.21",
"ng-packagr": "^18.0.0",
"prettier": "^3.4.2",
"pretty-quick": "^4.0.0",
"semantic-release": "^19.0.5",
"ts-node": "~10.9.2",
"typescript": "~5.4.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "[email protected]:hypertrace/hyperdash-angular.git"
},
"publishConfig": {
"registry": "https://hypertrace.jfrog.io/artifactory/api/npm/npm/"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "dist/hyperdash-angular"
}
],
"@semantic-release/github"
]
}
}