[skip ci] contribution guide and readme update
Showing
CODE_OF_CONDUCT.md
0 → 100644
docs/CONTRIBUTING.md
0 → 100644
docs/CUSTOM_BUILD.md
0 → 100644
{ | ||
"name": "block-scout", | ||
"version": "0.1.0", | ||
"private": true, | ||
"name": "blockscout-frontend", | ||
"version": "1.0.0", | ||
"private": false, | ||
"homepage": "https://github.com/blockscout/frontend#readme", | ||
"engines": { | ||
"node": "18", | ||
... | ... | @@ -9,17 +9,17 @@ |
}, | ||
"scripts": { | ||
"dev": "next dev", | ||
"dev:local": "./node_modules/.bin/dotenv -e ./configs/envs/.env.localhost -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"dev:localhost": "./node_modules/.bin/dotenv -e ./configs/envs/.env.localhost -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"dev:main": "./node_modules/.bin/dotenv -e ./configs/envs/.env.main -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"dev:main:L2": "./node_modules/.bin/dotenv -e ./configs/envs/.env.main.L2 -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"dev:poa_core": "./node_modules/.bin/dotenv -e ./configs/envs/.env.poa_core -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"dev:eth_goerli": "./node_modules/.bin/dotenv -e ./configs/envs/.env.eth_goerli -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"dev:eth": "./node_modules/.bin/dotenv -e ./configs/envs/.env.eth -e ./configs/envs/.env.secrets -- bash -c 'next dev -- -p \"$NEXT_PUBLIC_APP_PORT\"' | ./node_modules/.bin/pino-pretty", | ||
"build": "next build", | ||
"build:docker": "docker build --build-arg GIT_COMMIT_SHA=$(git rev-parse HEAD) -t blockscout ./", | ||
"build:docker": "docker build --build-arg GIT_COMMIT_SHA=$(git rev-parse HEAD) -t blockscout-frontend ./", | ||
"start": "next start", | ||
"start:docker:local": "docker run -p 3000:3000 --env-file .env.local blockscout", | ||
"start:docker:poa_core": "docker run -p 3000:3000 --env-file ./configs/envs/.env.poa_core --env-file ./configs/envs/.env.secrets blockscout", | ||
"start:docker:local": "docker run -p 3000:3000 --env-file .env.local blockscout-frontend", | ||
"start:docker:poa_core": "docker run -p 3000:3000 --env-file ./configs/envs/.env.poa_core --env-file ./configs/envs/.env.secrets blockscout-frontend", | ||
"lint:eslint": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx", | ||
"lint:eslint:fix": "./node_modules/.bin/eslint . --ext .js,.jsx,.ts,.tsx --fix", | ||
"lint:tsc": "./node_modules/.bin/tsc -p ./tsconfig.json", | ||
... | ... |
Please register or sign in to comment