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.
58 lines
2.1 KiB
JSON
Executable File
58 lines
2.1 KiB
JSON
Executable File
{
|
|
"name": "@nomicfoundation/hardhat-errors",
|
|
"version": "3.0.7",
|
|
"description": "The different errors that Hardhat can throw",
|
|
"homepage": "https://github.com/nomicfoundation/hardhat/tree/v-next/v-next/hardhat-errors",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NomicFoundation/hardhat",
|
|
"directory": "v-next/hardhat-errors"
|
|
},
|
|
"author": "Nomic Foundation",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"types": "dist/src/index.d.ts",
|
|
"exports": {
|
|
".": "./dist/src/index.js",
|
|
"./descriptors": "./dist/src/descriptors.js"
|
|
},
|
|
"keywords": [
|
|
"ethereum",
|
|
"smart-contracts",
|
|
"hardhat"
|
|
],
|
|
"files": [
|
|
"dist/src/",
|
|
"src/",
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md"
|
|
],
|
|
"devDependencies": {
|
|
"@nomicfoundation/hardhat-node-test-reporter": "^3.0.0",
|
|
"@types/node": "^22.0.0",
|
|
"c8": "^9.1.0",
|
|
"eslint": "9.25.1",
|
|
"expect-type": "^1.2.1",
|
|
"prettier": "3.2.5",
|
|
"rimraf": "^5.0.5",
|
|
"tsx": "^4.19.3",
|
|
"typescript": "~5.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@nomicfoundation/hardhat-utils": "^4.0.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "pnpm prettier --check && pnpm eslint",
|
|
"lint:fix": "pnpm prettier --write && pnpm eslint --fix",
|
|
"eslint": "eslint \"src/**/*.ts\" \"test/**/*.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"
|
|
}
|
|
} |