Bumps [cypress](https://github.com/cypress-io/cypress) from 13.2.0 to 13.3.0. - [Release notes](https://github.com/cypress-io/cypress/releases) - [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md) - [Commits](https://github.com/cypress-io/cypress/compare/v13.2.0...v13.3.0) --- updated-dependencies: - dependency-name: cypress dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
		
			
				
	
	
		
			124 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			6.8 KiB
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "name": "mempool-frontend",
 | 
						|
  "version": "3.0.0-dev",
 | 
						|
  "description": "Bitcoin mempool visualizer and blockchain explorer backend",
 | 
						|
  "license": "GNU Affero General Public License v3.0",
 | 
						|
  "homepage": "https://mempool.space",
 | 
						|
  "repository": {
 | 
						|
    "type": "git",
 | 
						|
    "url": "git+https://github.com/mempool/mempool"
 | 
						|
  },
 | 
						|
  "bugs": {
 | 
						|
    "url": "https://github.com/mempool/mempool/issues"
 | 
						|
  },
 | 
						|
  "keywords": [
 | 
						|
    "bitcoin",
 | 
						|
    "mempool",
 | 
						|
    "blockchain",
 | 
						|
    "explorer",
 | 
						|
    "liquid"
 | 
						|
  ],
 | 
						|
  "main": "index.ts",
 | 
						|
  "scripts": {
 | 
						|
    "ng": "./node_modules/@angular/cli/bin/ng.js",
 | 
						|
    "tsc": "./node_modules/typescript/bin/tsc",
 | 
						|
    "i18n-extract-from-source": "npm run ng -- extract-i18n --out-file ./src/locale/messages.xlf",
 | 
						|
    "i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1 --force",
 | 
						|
    "serve": "npm run generate-config && npm run ng -- serve -c local",
 | 
						|
    "serve:stg": "npm run generate-config && npm run ng -- serve -c staging",
 | 
						|
    "serve:local-prod": "npm run generate-config && npm run ng -- serve -c local-prod",
 | 
						|
    "serve:local-staging": "npm run generate-config && npm run ng -- serve -c local-staging",
 | 
						|
    "start": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local",
 | 
						|
    "start:local-esplora": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local-esplora",
 | 
						|
    "start:stg": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c staging",
 | 
						|
    "start:local-prod": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local-prod",
 | 
						|
    "start:local-staging": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local-staging",
 | 
						|
    "start:mixed": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c mixed",
 | 
						|
    "build": "npm run generate-config && npm run ng -- build --configuration production --localize && npm run sync-assets && npm run build-mempool.js",
 | 
						|
    "sync-assets": "rsync -av ./src/resources ./dist/mempool/browser && node sync-assets.js 'dist/mempool/browser/resources/'",
 | 
						|
    "sync-assets-dev": "node sync-assets.js 'src/resources/'",
 | 
						|
    "generate-config": "node generate-config.js",
 | 
						|
    "build-mempool.js": "npm run build-mempool-js && npm run build-mempool-liquid-js && npm run build-mempool-bisq-js",
 | 
						|
    "build-mempool-js": "browserify -p tinyify ./node_modules/@mempool/mempool.js/lib/index.js --standalone mempoolJS > ./dist/mempool/browser/en-US/mempool.js",
 | 
						|
    "build-mempool-bisq-js": "browserify -p tinyify ./node_modules/@mempool/mempool.js/lib/index-bisq.js --standalone bisqJS > ./dist/mempool/browser/en-US/bisq.js",
 | 
						|
    "build-mempool-liquid-js": "browserify -p tinyify ./node_modules/@mempool/mempool.js/lib/index-liquid.js --standalone liquidJS > ./dist/mempool/browser/en-US/liquid.js",
 | 
						|
    "test": "npm run ng -- test",
 | 
						|
    "lint": "./node_modules/.bin/eslint . --ext .ts",
 | 
						|
    "lint:fix": "./node_modules/.bin/eslint . --ext .ts --fix",
 | 
						|
    "prettier": "prettier --write \"src/app/**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
 | 
						|
    "e2e": "npm run generate-config && npm run ng -- e2e",
 | 
						|
    "e2e:ci": "npm run cypress:run:ci",
 | 
						|
    "config:defaults:mempool": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true LIQUID_TESTNET_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 BASE_MODULE=mempool BLOCK_WEIGHT_UNITS=4000000 && npm run generate-config",
 | 
						|
    "config:defaults:liquid": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true LIQUID_TESTNET_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 BASE_MODULE=liquid BLOCK_WEIGHT_UNITS=300000 && npm run generate-config",
 | 
						|
    "config:defaults:bisq": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 BASE_MODULE=bisq BLOCK_WEIGHT_UNITS=4000000 && npm run generate-config",
 | 
						|
    "prerender": "npm run ng -- run mempool:prerender",
 | 
						|
    "cypress:open": "cypress open",
 | 
						|
    "cypress:run": "cypress run",
 | 
						|
    "cypress:run:record": "cypress run --record",
 | 
						|
    "cypress:open:ci": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && start-server-and-test serve:local-prod 4200 cypress:open",
 | 
						|
    "cypress:run:ci": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && start-server-and-test serve:local-prod 4200 cypress:run:record",
 | 
						|
    "cypress:open:ci:staging": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && start-server-and-test serve:local-staging 4200 cypress:open",
 | 
						|
    "cypress:run:ci:staging": "node update-config.js TESTNET_ENABLED=true SIGNET_ENABLED=true LIQUID_ENABLED=true BISQ_ENABLED=true ITEMS_PER_PAGE=25 && npm run generate-config && start-server-and-test serve:local-staging 4200 cypress:run:record"
 | 
						|
  },
 | 
						|
  "dependencies": {
 | 
						|
    "@angular-devkit/build-angular": "^16.2.0",
 | 
						|
    "@angular/animations": "^16.2.2",
 | 
						|
    "@angular/cli": "^16.2.0",
 | 
						|
    "@angular/common": "^16.2.2",
 | 
						|
    "@angular/compiler": "^16.2.2",
 | 
						|
    "@angular/core": "^16.2.2",
 | 
						|
    "@angular/forms": "^16.2.2",
 | 
						|
    "@angular/localize": "^16.2.2",
 | 
						|
    "@angular/platform-browser": "^16.2.2",
 | 
						|
    "@angular/platform-browser-dynamic": "^16.2.2",
 | 
						|
    "@angular/platform-server": "^16.2.2",
 | 
						|
    "@angular/router": "^16.2.2",
 | 
						|
    "@fortawesome/angular-fontawesome": "~0.13.0",
 | 
						|
    "@fortawesome/fontawesome-common-types": "~6.4.0",
 | 
						|
    "@fortawesome/fontawesome-svg-core": "~6.4.0",
 | 
						|
    "@fortawesome/free-solid-svg-icons": "~6.4.0",
 | 
						|
    "@mempool/mempool.js": "2.3.0",
 | 
						|
    "@ng-bootstrap/ng-bootstrap": "^15.1.0",
 | 
						|
    "@types/qrcode": "~1.5.0",
 | 
						|
    "bootstrap": "~4.6.2",
 | 
						|
    "browserify": "^17.0.0",
 | 
						|
    "clipboard": "^2.0.11",
 | 
						|
    "domino": "^2.1.6",
 | 
						|
    "echarts": "~5.4.3",
 | 
						|
    "echarts-gl": "^2.0.9",
 | 
						|
    "lightweight-charts": "~3.8.0",
 | 
						|
    "ngx-echarts": "~16.0.0",
 | 
						|
    "ngx-infinite-scroll": "^16.0.0",
 | 
						|
    "qrcode": "1.5.1",
 | 
						|
    "rxjs": "~7.8.1",
 | 
						|
    "tinyify": "^4.0.0",
 | 
						|
    "tlite": "^0.1.9",
 | 
						|
    "tslib": "~2.6.0",
 | 
						|
    "zone.js": "~0.13.1"
 | 
						|
  },
 | 
						|
  "devDependencies": {
 | 
						|
    "@angular/compiler-cli": "^16.1.5",
 | 
						|
    "@angular/language-service": "^16.1.5",
 | 
						|
    "@types/node": "^18.11.9",
 | 
						|
    "@typescript-eslint/eslint-plugin": "^5.48.1",
 | 
						|
    "@typescript-eslint/parser": "^5.48.1",
 | 
						|
    "eslint": "^8.31.0",
 | 
						|
    "http-proxy-middleware": "~2.0.6",
 | 
						|
    "prettier": "^3.0.0",
 | 
						|
    "ts-node": "~10.9.1",
 | 
						|
    "typescript": "~4.9.3"
 | 
						|
  },
 | 
						|
  "optionalDependencies": {
 | 
						|
    "@cypress/schematic": "^2.5.0",
 | 
						|
    "@types/cypress": "^1.1.3",
 | 
						|
    "cypress": "^13.3.0",
 | 
						|
    "cypress-fail-on-console-error": "~5.0.0",
 | 
						|
    "cypress-wait-until": "^2.0.1",
 | 
						|
    "mock-socket": "~9.2.1",
 | 
						|
    "start-server-and-test": "~2.0.0"
 | 
						|
  },
 | 
						|
  "scarfSettings": {
 | 
						|
    "enabled": false
 | 
						|
  }
 | 
						|
}
 |