Development Artifact Cleanup: ✅ BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location - dev/test-nodes/brother_node/: Moved from root directory for better organization - Contains development configuration, test logs, and test chain data - No impact on production systems - purely development/testing artifact ✅ DEVELOPMENT ARTIFACTS IDENTIFIED: - Chain ID: aitbc-brother-chain (test/development chain) - Ports: 8010 (P2P) and 8011 (RPC) - different from production - Environment: .env file with test configuration - Logs: rpc.log and node.log from development testing session (March 15, 2026) ✅ ROOT DIRECTORY CLEANUP: Removed development clutter from production directory - brother_node/ moved to dev/test-nodes/brother_node/ - Root directory now contains only production-ready components - Development artifacts properly organized in dev/ subdirectory DIRECTORY STRUCTURE IMPROVEMENT: 📁 dev/test-nodes/: Development and testing node configurations 🏗️ Root Directory: Clean production structure with only essential components 🧪 Development Isolation: Test environments separated from production BENEFITS: ✅ Clean Production Directory: No development artifacts in root ✅ Better Organization: Development nodes grouped in dev/ subdirectory ✅ Clear Separation: Production vs development environments clearly distinguished ✅ Maintainability: Easier to identify and manage development components RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
114 lines
4.6 KiB
JSON
Executable File
114 lines
4.6 KiB
JSON
Executable File
{
|
|
"name": "hardhat",
|
|
"version": "3.1.10",
|
|
"description": "Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.",
|
|
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NomicFoundation/hardhat",
|
|
"directory": "v-next/hardhat"
|
|
},
|
|
"author": "Nomic Foundation",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"types": "dist/src/index.d.ts",
|
|
"bin": {
|
|
"hardhat": "./dist/src/cli.js"
|
|
},
|
|
"exports": {
|
|
".": "./dist/src/index.js",
|
|
"./config": "./dist/src/config.js",
|
|
"./hre": "./dist/src/hre.js",
|
|
"./plugins": "./dist/src/plugins.js",
|
|
"./internal/lsp-helpers": "./dist/src/lsp-helpers.js",
|
|
"./types": "./dist/src/types/index.js",
|
|
"./types/arguments": "./dist/src/types/arguments.js",
|
|
"./types/artifacts": "./dist/src/types/artifacts.js",
|
|
"./types/config": "./dist/src/types/config.js",
|
|
"./types/global-options": "./dist/src/types/global-options.js",
|
|
"./types/hooks": "./dist/src/types/hooks.js",
|
|
"./types/hre": "./dist/src/types/hre.js",
|
|
"./types/network": "./dist/src/types/network.js",
|
|
"./types/plugins": "./dist/src/types/plugins.js",
|
|
"./types/providers": "./dist/src/types/providers.js",
|
|
"./types/tasks": "./dist/src/types/tasks.js",
|
|
"./types/test": "./dist/src/types/test.js",
|
|
"./types/user-interruptions": "./dist/src/types/user-interruptions.js",
|
|
"./types/utils": "./dist/src/types/utils.js",
|
|
"./types/solidity": "./dist/src/types/solidity.js",
|
|
"./console.sol": "./console.sol",
|
|
"./internal/coverage": "./dist/src/internal/builtin-plugins/coverage/exports.js",
|
|
"./internal/gas-analytics": "./dist/src/internal/builtin-plugins/gas-analytics/exports.js",
|
|
"./utils/contract-names": "./dist/src/utils/contract-names.js",
|
|
"./types/runtime": "./dist/src/internal/deprecated-module-imported-from-hardhat2-plugin.js",
|
|
"./builtin-tasks/task-names": "./dist/src/internal/deprecated-module-imported-from-hardhat2-plugin.js",
|
|
"./internal/artifacts": "./dist/src/internal/deprecated-module-imported-from-hardhat2-plugin.js"
|
|
},
|
|
"keywords": [
|
|
"ethereum",
|
|
"smart-contracts",
|
|
"hardhat"
|
|
],
|
|
"files": [
|
|
"dist/src/",
|
|
"src/",
|
|
"templates/",
|
|
"console.sol",
|
|
"coverage.sol",
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-node-test-reporter": "^3.0.2",
|
|
"@types/adm-zip": "^0.5.5",
|
|
"@types/debug": "^4.1.7",
|
|
"@types/node": "^22.0.0",
|
|
"@types/semver": "^7.5.8",
|
|
"@types/ws": "^8.5.13",
|
|
"c8": "^9.1.0",
|
|
"eslint": "9.25.1",
|
|
"expect-type": "^1.2.1",
|
|
"prettier": "3.2.5",
|
|
"rimraf": "^5.0.5",
|
|
"typescript": "~5.8.0",
|
|
"@nomicfoundation/hardhat-test-utils": "^2.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@nomicfoundation/edr": "0.12.0-next.24",
|
|
"@nomicfoundation/hardhat-errors": "^3.0.7",
|
|
"@nomicfoundation/hardhat-utils": "^4.0.0",
|
|
"@nomicfoundation/hardhat-vendored": "^3.0.1",
|
|
"@nomicfoundation/hardhat-zod-utils": "^3.0.2",
|
|
"@nomicfoundation/solidity-analyzer": "^0.1.1",
|
|
"@sentry/core": "^9.4.0",
|
|
"adm-zip": "^0.4.16",
|
|
"chalk": "^5.3.0",
|
|
"chokidar": "^4.0.3",
|
|
"debug": "^4.3.2",
|
|
"enquirer": "^2.3.0",
|
|
"ethereum-cryptography": "^2.2.1",
|
|
"micro-eth-signer": "^0.14.0",
|
|
"p-map": "^7.0.2",
|
|
"resolve.exports": "^2.0.3",
|
|
"semver": "^7.6.3",
|
|
"tsx": "^4.19.3",
|
|
"ws": "^8.18.0",
|
|
"zod": "^3.23.8"
|
|
},
|
|
"scripts": {
|
|
"lint": "pnpm prettier --check && pnpm eslint",
|
|
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
|
|
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
"postlint": "eslint \"templates/**/*.ts\"",
|
|
"postlint:fix": "eslint --fix \"templates/**/*.ts\"",
|
|
"prettier": "prettier \"**/*.{ts,js,md,json}\"",
|
|
"test": "node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"",
|
|
"test:only": "node --import tsx/esm --test --test-only --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"",
|
|
"test:coverage": "c8 --reporter html --reporter text --all --exclude test --exclude \"src/**/{types,type-extensions}.ts\" --src src node --import tsx/esm --test --test-reporter=@nomicfoundation/hardhat-node-test-reporter \"test/*.ts\" \"test/!(fixture-projects|helpers)/**/*.ts\"",
|
|
"pretest": "pnpm build",
|
|
"pretest:only": "pnpm build",
|
|
"build": "tsc --build .",
|
|
"clean": "rimraf dist"
|
|
}
|
|
} |