This repository was archived by the owner on Jan 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 4.63 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 4.63 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "angular-devtools",
"version": "0.0.0",
"scripts": {
"postinstall": "ngcc --async false --properties es2015 browser module main --first-only --create-ivy-entry-points",
"ng": "ng",
"cypress:verify": "cypress verify",
"start": "cross-env LATEST_SHA=`git rev-parse --short HEAD` ng serve",
"start-no-animations": "yarn start --configuration=e2e",
"build": "ng build",
"build:chrome": "cross-env LATEST_SHA=`git rev-parse --short HEAD` ng build shell-chrome",
"release": "node projects/shell-chrome/set-version.js && cross-env LATEST_SHA=`git rev-parse --short HEAD` ng build shell-chrome --configuration production",
"test": "ng test",
"lint": "tslint -p tsconfig.json -c tslint.json",
"lint:fix": "tslint -p tsconfig.json -c tslint.json --fix",
"e2e": "npm run cy:run",
"cy:verify": "$(npm bin)/cypress verify",
"cy:version": "$(npm bin)/cypress version",
"cy:run": "$(yarn bin)/cypress run",
"cy:open": "$(yarn bin)/cypress open",
"cy:ci": "start-server-and-test start-no-animations http-get://localhost:4200 cy:run",
"cy:watch": "start-server-and-test start-no-animations http-get://localhost:4200 cy:open",
"test:backend": "ng test ng-devtools-backend --watch=false",
"test:devtools": "ng test ng-devtools --watch=false",
"test:shared-utils": "ng test shared-utils --watch=false",
"test:protocol": "ng test protocol --watch=false",
"test:ci": "npm run test:backend && npm run test:devtools && npm run test:shared-utils && npm run test:protocol",
"prettier": "prettier --write \"{,!(node_modules|dist|build|coverage)/**/}*.{js,jsx,ts,tsx,json}\"",
"prettier:fix": "pretty-quick --staged"
},
"husky": {
"hooks": {
"pre-commit": "yarn prettier:fix"
}
},
"private": true,
"dependencies": {
"@angular/animations": "github:angular/animations-builds#26d390739c8e0e2f2b586007560e4cc773ea5bc2",
"@angular/cdk": "~12.2.0",
"@angular/common": "github:angular/common-builds#a46c1f6bf5cc38c235d2379730d0a8089db8ddbd",
"@angular/compiler": "github:angular/compiler-builds#293f22e6c464eaab4e79795bffc17f9500c68ead",
"@angular/core": "github:angular/core-builds#a8c0c6dbb9fad4b33024c0c32ba6fd3744747c4e",
"@angular/forms": "github:angular/forms-builds#6246f20d25cd341aa328968358c973dc8f3fad40",
"@angular/material": "~12.2.0",
"@angular/platform-browser": "github:angular/platform-browser-builds#e031325de68d4e676a59877dc1dcf55d1dc4e0a9",
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#27089b0c4490dfed578bc4c4ecf3e739720d7e88",
"d3": "^5.7.0",
"memo-decorator": "^2.0.1",
"ngx-flamegraph": "0.0.10",
"rxjs": "~6.6.0",
"semver-dsl": "^1.0.1",
"tslib": "^2.0.0",
"webtreemap": "^2.0.1",
"zone.js": "~0.11.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "github:angular/angular-devkit-build-angular-builds#7c4c781be8e3666f14360d3fe5dac0d35a851227",
"@angular-devkit/build-ng-packagr": "~0.1002.0",
"@angular/cli": "github:angular/cli-builds#858ee211470523d39a9ff16b57b676be740f77cc",
"@angular/compiler-cli": "github:angular/compiler-cli-builds#ae8a6d29ceda5c2e0d42a66d78b8f0d3165b1faa",
"@angular/elements": "github:angular/elements-builds#8aceabe84dfa712267f41383e7203a53e9941958",
"@angular/language-service": "github:angular/language-service-builds#65196199e8b7cce9aab23c7e43a0ed50b0e2f4d5",
"@angular/router": "github:angular/router-builds#45ff75825996bf65981ab7bac41d256e47be3669",
"@bahmutov/add-typescript-to-cypress": "^2.1.2",
"@types/chrome": "^0.0.159",
"@types/clone-deep": "^4.0.1",
"@types/filesystem": "^0.0.32",
"@types/jasmine": "~3.9.0",
"@types/jasminewd2": "~2.0.3",
"@types/resize-observer-browser": "^0.1.5",
"@types/semver": "^7.1.0",
"codelyzer": "^6.0.0",
"cross-env": "^7.0.2",
"cypress": "^8.0.0",
"cypress-browser-extension-plugin": "^0.1.0",
"cypress-iframe": "^1.0.1",
"document-register-element": "^1.7.2",
"husky": "^4.3.8",
"jasmine-core": "~3.10.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^12.0.0",
"ngx-build-plus": "^11.0.0",
"prettier": "^2.0.0",
"pretty-quick": "^3.0.0",
"protractor": "~7.0.0",
"start-server-and-test": "^1.10.11",
"todomvc-app-css": "^2.3.0",
"todomvc-common": "^1.0.5",
"ts-node": "~10.3.0",
"tsickle": "^0.43.0",
"tslint": "~5.20.0",
"typescript": "~4.4.3",
"wait-on": "^6.0.0",
"webpack": "5.59.1"
}
}