Merge branch 'main' of github.com:blockscout/frontend into block-details-api
Showing
.env.template
0 → 100644
.gitattributes
0 → 100644
.husky/post-checkout
0 → 100755
.husky/post-commit
0 → 100755
.husky/post-merge
0 → 100755
.husky/pre-push
0 → 100755
129 Bytes
129 Bytes
129 Bytes
129 Bytes
129 Bytes
129 Bytes
charts/.gitignore
deleted
100644 → 0
charts/Chart.yaml
deleted
100644 → 0
configs/app/config.ts
0 → 100644
configs/envs/.env.common
0 → 100644
configs/envs/.env.poa_core
0 → 100644
configs/nextjs/redirects.js
0 → 100644
configs/sentry/nextjs.ts
0 → 100644
configs/sentry/react.ts
0 → 100644
data/tx.ts
deleted
100644 → 0
data/txs.ts
deleted
100644 → 0
deploy/scripts/entrypoint.sh
0 → 100755
deploy/values/e2e/.sops.yaml
0 → 100644
icons/nft_shield.svg
0 → 100644
lib/bigint/compareBns.ts
0 → 100644
lib/getMarketplaceApps.ts
0 → 100644
lib/getValueWithUnit.tsx
0 → 100644
lib/hexToAddress.ts
0 → 100644
lib/hexToBytes.ts
0 → 100644
lib/hexToUtf8.ts
0 → 100644
lib/link/basePath.js
0 → 100644
lib/link/paths.js
0 → 100644
lib/link/useLink.ts
deleted
100644 → 0
middleware.js
deleted
100644 → 0
middleware.ts
0 → 100644
... | @@ -9,11 +9,18 @@ | ... | @@ -9,11 +9,18 @@ |
}, | }, | ||
"scripts": { | "scripts": { | ||
"dev": "next dev", | "dev": "next dev", | ||
"dev:poa_core": "./node_modules/.bin/dotenv -e ./configs/envs/.env.poa_core -e ./configs/envs/.env.common -e ./configs/envs/.env.secrets next dev", | |||
"build": "next build", | "build": "next build", | ||
"build:vercel": "./node_modules/.bin/dotenv -e ./configs/envs/.env.poa_core -e ./configs/envs/.env.common next build", | |||
"build:docker": "docker build --build-arg GIT_COMMIT_SHA=$(git rev-parse HEAD) -t blockscout ./", | |||
"start": "next start", | "start": "next start", | ||
"start:docker:poa_core": "docker run -p 3000:3000 --env-file ./configs/envs/.env.common --env-file ./configs/envs/.env.poa_core --env-file ./configs/envs/.env.secrets blockscout", | |||
"lint:eslint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx", | "lint:eslint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx", | ||
"lint:tsc": "./node_modules/.bin/tsc -p ./tsconfig.json", | |||
"prepare": "husky install", | "prepare": "husky install", | ||
"format-svg": "./node_modules/.bin/svgo -r ./icons" | "format-svg": "./node_modules/.bin/svgo -r ./icons", | ||
"test-ct": "playwright test -c playwright-ct.config.ts", | |||
"test-docker": "docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.27.0-focal ./run-tests.sh" | |||
}, | }, | ||
"dependencies": { | "dependencies": { | ||
"@chakra-ui/react": "2.3.1", | "@chakra-ui/react": "2.3.1", | ||
... | @@ -21,6 +28,8 @@ | ... | @@ -21,6 +28,8 @@ |
"@emotion/react": "^11", | "@emotion/react": "^11", | ||
"@emotion/styled": "^11", | "@emotion/styled": "^11", | ||
"@sentry/nextjs": "^7.12.1", | "@sentry/nextjs": "^7.12.1", | ||
"@sentry/react": "^7.13.0", | |||
"@sentry/tracing": "^7.13.0", | |||
"@tanstack/react-query": "^4.0.10", | "@tanstack/react-query": "^4.0.10", | ||
"@tanstack/react-query-devtools": "^4.0.10", | "@tanstack/react-query-devtools": "^4.0.10", | ||
"@types/react-scroll": "^1.8.4", | "@types/react-scroll": "^1.8.4", | ||
... | @@ -42,10 +51,12 @@ | ... | @@ -42,10 +51,12 @@ |
"use-font-face-observer": "^1.2.1" | "use-font-face-observer": "^1.2.1" | ||
}, | }, | ||
"devDependencies": { | "devDependencies": { | ||
"@playwright/experimental-ct-react": "^1.26.1", | |||
"@types/node": "17.0.36", | "@types/node": "17.0.36", | ||
"@types/react": "18.0.9", | "@types/react": "18.0.9", | ||
"@types/react-dom": "18.0.5", | "@types/react-dom": "18.0.5", | ||
"@typescript-eslint/eslint-plugin": "^5.27.0", | "@typescript-eslint/eslint-plugin": "^5.27.0", | ||
"dotenv-cli": "^6.0.0", | |||
"eslint": "8.16.0", | "eslint": "8.16.0", | ||
"eslint-config-next": "^12.3.0", | "eslint-config-next": "^12.3.0", | ||
"eslint-plugin-es5": "^1.5.0", | "eslint-plugin-es5": "^1.5.0", | ||
... | @@ -53,6 +64,7 @@ | ... | @@ -53,6 +64,7 @@ |
"eslint-plugin-regexp": "^1.7.0", | "eslint-plugin-regexp": "^1.7.0", | ||
"husky": "^8.0.0", | "husky": "^8.0.0", | ||
"lint-staged": ">=10", | "lint-staged": ">=10", | ||
"playwright": "^1.26.1", | |||
"svgo": "^2.8.0", | "svgo": "^2.8.0", | ||
"typescript": "4.7.2" | "typescript": "4.7.2" | ||
}, | }, | ||
... | ... |
playwright-ct.config.ts
0 → 100644
playwright/index.html
0 → 100644
playwright/index.ts
0 → 100644
run-tests.sh
0 → 100755
sentry.properties
deleted
100644 → 0
theme/components/Spinner.ts
0 → 100644
types/unit.ts
0 → 100644
ui/shared/Utilization.pw.tsx
0 → 100644
ui/tx/TokenTransferList.tsx
0 → 100644
ui/txs/TxsSkeletonMobile.tsx
0 → 100644
This source diff could not be displayed because it is too large. You can view the blob instead.