-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
130 lines (130 loc) · 6.94 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
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "dockstore-ui2",
"version": "2.13.0",
"license": "Apache License 2.0",
"config": {
"webservice_version_prefix": "1.17.0",
"webservice_version": "1.17.0",
"use_snapshot": true
},
"scripts": {
"ng": "npx ng",
"start": "npx ng serve --proxy-config=proxy.conf.json",
"webservice": "./scripts/run-webservice-script.sh",
"prebuild": "ts-node -O '{\"module\":\"commonjs\"}' git.version.ts && ./scripts/generate-openapi-script.sh",
"prebuild.prod": "npm run prebuild",
"build.prod": "npx ng build",
"build": "npx ng build",
"watch": "ng build --watch --configuration development",
"license": "license-checker --production --excludePackages dockstore-ui2@$npm_package_version --csv > THIRD-PARTY-LICENSES.csv",
"circle-ci-license-test-file": "license-checker --production --excludePackages dockstore-ui2@$npm_package_version --csv > CIRCLE-THIRD-PARTY-LICENSES.csv",
"compodoc": "npx compodoc -p src/tsconfig.compodoc.json --output docs",
"install-git-secrets": "./scripts/install-git-secrets.sh",
"test": "npx ng test",
"lint": "npx ng lint",
"e2e": "npx ng e2e",
"postinstall": "ngcc",
"test-qa-waf": "npx cypress run -c baseUrl=https://qa.dockstore.org -s \"cypress/e2e/smokeTests/qaOnly/waf.ts,cypress/e2e/smokeTests/sharedTests/waf.ts\"",
"test-staging-waf": "npx cypress run -c baseUrl=https://staging.dockstore.org -s \"cypress/e2e/smokeTests/stagingOnly/waf.ts,cypress/e2e/smokeTests/sharedTests/waf.ts\"",
"test-prod-waf": "npx cypress run -c baseUrl=https://dockstore.org -s \"cypress/e2e/smokeTests/prodOnly/waf.ts,cypress/e2e/smokeTests/sharedTests/waf.ts\"",
"test-local-no-auth": "npx cypress run --record --reporter junit -c baseUrl=http://localhost:4200 -s \"cypress/e2e/smokeTests/qaOnly/monitor.ts,cypress/e2e/smokeTests/qaOnly/basic-enduser.ts,cypress/e2e/smokeTests/qaOnly/search.ts,cypress/e2e/smokeTests/sharedTests/monitor.ts,cypress/e2e/smokeTests/sharedTests/basic-enduser.ts,cypress/e2e/smokeTests/sharedTests/search.ts\"",
"test-qa-no-auth": "npx cypress run --record --reporter junit -c baseUrl=https://qa.dockstore.org -s \"cypress/e2e/smokeTests/qaOnly/monitor.ts,cypress/e2e/smokeTests/qaOnly/basic-enduser.ts,cypress/e2e/smokeTests/qaOnly/search.ts,cypress/e2e/smokeTests/sharedTests/monitor.ts,cypress/e2e/smokeTests/sharedTests/basic-enduser.ts,cypress/e2e/smokeTests/sharedTests/search.ts,cypress/e2e/smokeTests/sharedTests/secheaders.ts\"",
"test-staging-no-auth": "npx cypress run -c baseUrl=https://staging.dockstore.org -s \"cypress/e2e/smokeTests/stagingOnly/monitor.ts,cypress/e2e/smokeTests/stagingOnly/basic-enduser.ts,cypress/e2e/smokeTests/stagingOnly/search.ts,cypress/e2e/smokeTests/sharedTests/monitor.ts,cypress/e2e/smokeTests/sharedTests/basic-enduser.ts,cypress/e2e/smokeTests/sharedTests/search.ts,cypress/e2e/smokeTests/sharedTests/secheaders.ts\"",
"test-prod-no-auth": "npx cypress run -c baseUrl=https://dockstore.org -s \"cypress/e2e/smokeTests/prodOnly/monitor.ts,cypress/e2e/smokeTests/prodOnly/basic-enduser.ts,cypress/e2e/smokeTests/prodOnly/search.ts,cypress/e2e/smokeTests/prodOnly/basic-enduser-prod-only.ts,cypress/e2e/smokeTests/sharedTests/monitor.ts,cypress/e2e/smokeTests/sharedTests/basic-enduser.ts,cypress/e2e/smokeTests/sharedTests/search.ts,cypress/e2e/smokeTests/sharedTests/secheaders.ts\"",
"test-local-auth": "npx cypress run --headed -c baseUrl=http://localhost:4200 -s \"cypress/e2e/smokeTests/sharedTests/auth-tests.ts\"",
"test-qa-auth": "npx cypress run -c baseUrl=https://qa.dockstore.org -s \"cypress/e2e/smokeTests/qaOnly/auth-tests.ts,cypress/e2e/smokeTests/sharedTests/auth-tests.ts\"",
"test-staging-auth": "npx cypress run -c baseUrl=https://staging.dockstore.org -s \"cypress/e2e/smokeTests/stagingOnly/auth-tests.ts,cypress/e2e/smokeTests/sharedTests/auth-tests.ts\"",
"test-prod-auth": "npx cypress run -c baseUrl=https://dockstore.org -s \"cypress/e2e/smokeTests/prodOnly/auth-tests.ts,cypress/e2e/smokeTests/sharedTests/auth-tests.ts\"",
"prepare": "husky install",
"compare-audits": "scripts/npm-audit-comparison.sh",
"accessibility-test": "scripts/run-pa11y-ci.sh"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.2.12",
"@angular/cdk": "^16.2.14",
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/forms": "^16.2.12",
"@angular/material": "^16.2.14",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"@datorama/akita": "^7.0.0",
"@fortawesome/angular-fontawesome": "^0.13.0",
"@fortawesome/fontawesome-svg-core": "^6.2.0",
"@fortawesome/free-brands-svg-icons": "^6.0.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@ngbracket/ngx-layout": "^15.1.3",
"@ngneat/forms-manager": "^2.3.0",
"academicons": "^1.8.6",
"ace-builds": "^1.4.12",
"angular-tag-cloud-module": "^16.0.0",
"bodybuilder": "^2.4.0",
"bootstrap": "^3.4.1",
"cytoscape": "^3.19.0",
"cytoscape-dagre": "^2.3.2",
"cytoscape-popper": "^2.0.0",
"dompurify": "^2.5.4",
"file-saver": "^2.0.5",
"ini": "^4.1.1",
"jquery": "^3.6.0",
"material-design-icons-iconfont": "^6.1.0",
"mathjax": "^3.2.2",
"ngx-markdown": "^16.0.0",
"ngx-mat-select-search": "^6.0.0",
"ngx-sharebuttons": "^8.0.5",
"prismjs": "^1.29.0",
"rxjs": "^6.6.7",
"split-string": "^3.1.0",
"ts-md5": "^1.2.8",
"tslib": "^2.3.0",
"uuid": "^8.3.2",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.16",
"@angular-eslint/builder": "^16.3.1",
"@angular-eslint/eslint-plugin": "^16.3.1",
"@angular-eslint/eslint-plugin-template": "^16.3.1",
"@angular-eslint/schematics": "^16.3.1",
"@angular-eslint/template-parser": "^15.2.1",
"@angular/cli": "^16.2.14",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@cypress/webpack-batteries-included-preprocessor": "^2.4.1",
"@cypress/webpack-preprocessor": "^5.17.1",
"@datorama/akita-ngdevtools": "^7.0.0",
"@types/cytoscape": "^3.14.15",
"@types/elasticsearch": "^5.0.37",
"@types/jasmine": "^3.7.7",
"@types/jquery": "^3.5.5",
"@types/node": "^18.19.39",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"cypress": "^13.7.2",
"eslint": "^8.2.0",
"husky": "^7.0.0",
"jasmine-core": "^3.7.1",
"karma": "^6.3.16",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.1.1",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"license-checker": "^25.0.1",
"lint-staged": "^11.0.0",
"pa11y-ci": "^3.0.1",
"prettier": "^2.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"overrides": {
"@schematics/update": {
"ini": "^1.3.8"
},
"ngx-mat-select-search": {
"@angular/material": "^16.2.14"
}
}
}