This repository has been archived by the owner on Sep 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.59 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
117
{
"name": "hypertrace-core-ui",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "git://github.com/hypertrace/hypertrace-core-ui"
},
"license": "LicenseRef-LICENSE",
"scripts": {
"postinstall": "ngcc --properties browser main --tsconfig './tsconfig.spec.json'",
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod",
"build:common": "ng build common",
"build:components": "ng build components",
"build:dashboards": "ng build dashboards",
"build:ci": "node --max_old_space_size=3584 node_modules/@angular/cli/bin/ng build --prod --no-progress",
"test": "ng test hypertrace-core-ui --cache",
"lint": "ng lint hypertrace-core-ui",
"prettier:check": "prettier --check '**'",
"test:ci": "ng test hypertrace-core-ui -i --ci --coverage",
"docs": "compodoc -p tsconfig.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.0.4",
"@angular/cdk": "^10.0.2",
"@angular/common": "^10.0.4",
"@angular/compiler": "^10.0.4",
"@angular/core": "^10.0.4",
"@angular/flex-layout": "^10.0.0-beta.32",
"@angular/forms": "^10.0.4",
"@angular/material": "^10.0.2",
"@angular/platform-browser": "^10.0.4",
"@angular/platform-browser-dynamic": "^10.0.4",
"@angular/router": "^10.0.4",
"@hypertrace/hyperdash": "^1.1.2",
"@hypertrace/hyperdash-angular": "^2.1.0",
"apollo-angular": "^1.10.0",
"apollo-angular-link-http": "^1.11.0",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link": "^1.2.14",
"core-js": "^3.5.0",
"d3-array": "^2.7.0",
"d3-axis": "^1.0.12",
"d3-color": "^2.0.0",
"d3-interpolate": "^1.3.2",
"d3-scale": "^3.2.2",
"d3-selection": "^1.4.2",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"lodash-es": "^4.17.15",
"rxjs": "~6.6.2",
"tslib": "^2.0.1",
"uuid": "^8.3.0",
"zone.js": "^0.10.3"
},
"devDependencies": {
"@angular-builders/jest": "^10.0.0",
"@angular-devkit/build-angular": "~0.1000.7",
"@angular-devkit/build-ng-packagr": "~0.1000.3",
"@angular/cli": "10.0.3",
"@angular/compiler-cli": "~10.0.4",
"@angular/language-service": "~10.0.5",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.2",
"@compodoc/compodoc": "^1.1.11",
"@ngneat/spectator": "^5.13.0",
"@types/d3-array": "^2.0.0",
"@types/d3-axis": "^1.0.12",
"@types/d3-scale": "^2.1.1",
"@types/d3-selection": "^1.4.1",
"@types/d3-color": "^1.2.2",
"@types/d3-interpolate": "^1.3.1",
"@types/jest": "^26.0.10",
"@types/lodash-es": "^4.17.3",
"@types/node": "^14.0.14",
"@types/uuid": "^8.3.0",
"@types/webpack-env": "^1.14.0",
"codelyzer": "^6.0.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"jest-config": "^26.1.0",
"jest-html-reporter": "^3.1.3",
"jest-junit": "^11.1.0",
"lodash": "^4.17.20",
"ng-mocks": "^10.1.2",
"ng-packagr": "^10.0.0",
"prettier": "~2.0.2",
"pretty-quick": "^2.0.1",
"ts-node": "~8.10.2",
"tslint": "~6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.9.7",
"typescript-tslint-plugin": "^0.5.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test",
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}