2019-07-21 17:59:47 +03:00
|
|
|
{
|
2020-03-13 19:48:10 +09:00
|
|
|
"name": "mempool-frontend",
|
2023-03-28 14:25:05 +09:00
|
|
|
"version": "2.6.0-dev",
|
2020-03-13 19:48:10 +09:00
|
|
|
"description": "Bitcoin mempool visualizer and blockchain explorer backend",
|
2021-03-18 16:29:11 +09:00
|
|
|
"license": "GNU Affero General Public License v3.0",
|
2020-03-13 19:48:10 +09:00
|
|
|
"homepage": "https://mempool.space",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2020-03-13 19:51:25 +09:00
|
|
|
"url": "git+https://github.com/mempool/mempool"
|
2020-03-13 19:48:10 +09:00
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/mempool/mempool/issues"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"bitcoin",
|
|
|
|
"mempool",
|
|
|
|
"blockchain",
|
|
|
|
"explorer",
|
|
|
|
"liquid"
|
|
|
|
],
|
|
|
|
"main": "index.ts",
|
2019-07-21 17:59:47 +03:00
|
|
|
"scripts": {
|
2022-06-27 21:28:21 -07:00
|
|
|
"ng": "./node_modules/@angular/cli/bin/ng.js",
|
2020-11-23 17:19:16 +09:00
|
|
|
"tsc": "./node_modules/typescript/bin/tsc",
|
2022-10-07 00:54:33 +04:00
|
|
|
"i18n-extract-from-source": "npm run ng -- extract-i18n --out-file ./src/locale/messages.xlf",
|
2020-12-05 00:12:08 +09:00
|
|
|
"i18n-pull-from-transifex": "tx pull -a --parallel --minimum-perc 1 --force",
|
2022-06-27 21:28:21 -07:00
|
|
|
"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",
|
2022-11-19 15:57:24 +09:00
|
|
|
"start:local-esplora": "npm run generate-config && npm run sync-assets-dev && npm run ng -- serve -c local-esplora",
|
2022-06-27 21:28:21 -07:00
|
|
|
"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",
|
2022-09-27 01:14:29 +04:00
|
|
|
"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/'",
|
2020-06-22 22:10:49 +07:00
|
|
|
"generate-config": "node generate-config.js",
|
2021-12-20 23:48:26 +04:00
|
|
|
"build-mempool.js": "npm run build-mempool-js && npm run build-mempool-liquid-js && npm run build-mempool-bisq-js",
|
2021-12-22 19:33:10 +04:00
|
|
|
"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",
|
2022-06-27 21:28:21 -07:00
|
|
|
"test": "npm run ng -- test",
|
2022-07-05 04:29:46 -07:00
|
|
|
"lint": "./node_modules/.bin/eslint . --ext .ts",
|
|
|
|
"lint:fix": "./node_modules/.bin/eslint . --ext .ts --fix",
|
2022-07-07 03:02:02 -07:00
|
|
|
"prettier": "prettier --write \"src/app/**/*.{js,json,css,scss,less,md,ts,html,component.html}\"",
|
2022-06-27 21:28:21 -07:00
|
|
|
"e2e": "npm run generate-config && npm run ng -- e2e",
|
2021-07-25 11:03:47 -07:00
|
|
|
"e2e:ci": "npm run cypress:run:ci",
|
2022-01-20 21:29:45 -08:00
|
|
|
"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",
|
2022-06-27 21:28:21 -07:00
|
|
|
"prerender": "npm run ng -- run mempool:prerender",
|
2021-07-25 11:03:47 -07:00
|
|
|
"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",
|
2022-02-06 15:12:03 -08:00
|
|
|
"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"
|
2019-07-21 17:59:47 +03:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-11-28 11:55:23 +09:00
|
|
|
"@angular-devkit/build-angular": "^14.2.10",
|
|
|
|
"@angular/animations": "^14.2.12",
|
|
|
|
"@angular/cli": "^14.2.10",
|
|
|
|
"@angular/common": "^14.2.12",
|
|
|
|
"@angular/compiler": "^14.2.12",
|
|
|
|
"@angular/core": "^14.2.12",
|
|
|
|
"@angular/forms": "^14.2.12",
|
|
|
|
"@angular/localize": "^14.2.12",
|
|
|
|
"@angular/platform-browser": "^14.2.12",
|
|
|
|
"@angular/platform-browser-dynamic": "^14.2.12",
|
|
|
|
"@angular/platform-server": "^14.2.12",
|
|
|
|
"@angular/router": "^14.2.12",
|
2022-11-28 16:12:04 +09:00
|
|
|
"@fortawesome/angular-fontawesome": "~0.11.1",
|
|
|
|
"@fortawesome/fontawesome-common-types": "~6.2.1",
|
|
|
|
"@fortawesome/fontawesome-svg-core": "~6.2.1",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "~6.2.1",
|
2022-01-10 15:55:18 +04:00
|
|
|
"@mempool/mempool.js": "2.3.0",
|
2022-11-28 16:00:50 +09:00
|
|
|
"@ng-bootstrap/ng-bootstrap": "^13.1.1",
|
2022-11-28 16:12:04 +09:00
|
|
|
"@types/qrcode": "~1.5.0",
|
2022-11-28 16:00:50 +09:00
|
|
|
"bootstrap": "~4.6.1",
|
2021-04-09 01:22:24 +04:00
|
|
|
"browserify": "^17.0.0",
|
2022-11-28 16:12:04 +09:00
|
|
|
"clipboard": "^2.0.11",
|
2020-11-07 04:30:52 +07:00
|
|
|
"domino": "^2.1.6",
|
2022-12-29 15:03:52 +04:00
|
|
|
"echarts": "~5.4.1",
|
2022-07-21 22:43:12 +02:00
|
|
|
"echarts-gl": "^2.0.9",
|
2022-06-26 11:34:25 +02:00
|
|
|
"lightweight-charts": "~3.8.0",
|
2022-11-30 12:56:07 +09:00
|
|
|
"ngx-echarts": "~14.0.0",
|
2022-11-28 16:00:50 +09:00
|
|
|
"ngx-infinite-scroll": "^14.0.1",
|
2022-11-30 12:56:07 +09:00
|
|
|
"qrcode": "1.5.1",
|
2022-12-29 15:03:52 +04:00
|
|
|
"rxjs": "~7.8.0",
|
2022-11-28 16:12:04 +09:00
|
|
|
"tinyify": "^3.1.0",
|
2020-10-26 20:56:55 +09:00
|
|
|
"tlite": "^0.1.9",
|
2022-11-28 16:12:04 +09:00
|
|
|
"tslib": "~2.4.1",
|
2022-12-01 15:36:19 +09:00
|
|
|
"zone.js": "~0.12.0"
|
2019-07-21 17:59:47 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-28 11:55:23 +09:00
|
|
|
"@angular/compiler-cli": "^14.2.12",
|
|
|
|
"@angular/language-service": "^14.2.12",
|
2022-11-30 12:56:07 +09:00
|
|
|
"@types/node": "^18.11.9",
|
2023-01-13 13:12:46 +04:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.1",
|
|
|
|
"@typescript-eslint/parser": "^5.48.1",
|
|
|
|
"eslint": "^8.31.0",
|
2022-06-26 11:34:25 +02:00
|
|
|
"http-proxy-middleware": "~2.0.6",
|
2023-01-13 13:12:46 +04:00
|
|
|
"prettier": "^2.8.2",
|
2022-11-30 12:56:07 +09:00
|
|
|
"ts-node": "~10.9.1",
|
2022-05-27 15:34:58 +04:00
|
|
|
"typescript": "~4.6.4"
|
2021-06-11 21:06:55 -07:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2022-12-16 16:32:58 -08:00
|
|
|
"@cypress/schematic": "^2.4.0",
|
2023-03-02 23:17:26 -08:00
|
|
|
"cypress": "^12.7.0",
|
2022-11-28 16:12:04 +09:00
|
|
|
"cypress-fail-on-console-error": "~4.0.2",
|
2022-07-06 13:24:04 -07:00
|
|
|
"cypress-wait-until": "^1.7.2",
|
2022-11-28 16:12:04 +09:00
|
|
|
"mock-socket": "~9.1.5",
|
2022-06-26 11:34:25 +02:00
|
|
|
"start-server-and-test": "~1.14.0"
|
2022-07-06 13:50:02 -07:00
|
|
|
},
|
|
|
|
"scarfSettings": {
|
|
|
|
"enabled": false
|
2019-07-21 17:59:47 +03:00
|
|
|
}
|
2023-03-02 23:17:26 -08:00
|
|
|
}
|