- Created .gitignore to exclude sensitive files and directories. - Added API documentation in API_DOCUMENTATION.md. - Included deployment instructions in DEPLOYMENT.md. - Established project structure documentation in PROJECT_STRUCTURE.md. - Updated README.md with project status and team information. - Added recommendations and status tracking documents. - Introduced testing guidelines in TESTING.md. - Set up CI workflow in .github/workflows/ci.yml. - Created Dockerfile for backend and frontend setups. - Added various service and utility files for backend functionality. - Implemented frontend components and pages for user interface. - Included mobile app structure and services. - Established scripts for deployment across multiple chains.
23 lines
716 B
JSON
23 lines
716 B
JSON
{
|
|
"name": "contracts",
|
|
"version": "1.0.0",
|
|
"description": "ASLE Smart Contracts using Foundry",
|
|
"scripts": {
|
|
"build": "forge build",
|
|
"test": "forge test",
|
|
"test:verbose": "forge test -vvv",
|
|
"test:gas": "forge test --gas-report",
|
|
"coverage": "forge coverage",
|
|
"lint": "forge fmt --check",
|
|
"format": "forge fmt",
|
|
"snapshot": "forge snapshot",
|
|
"script:deploy": "forge script script/Deploy.s.sol:DeployScript --broadcast --verify",
|
|
"script:multichain": "forge script script/DeployMultichain.s.sol:DeployMultichainScript",
|
|
"anvil": "anvil",
|
|
"clean": "forge clean"
|
|
},
|
|
"keywords": ["solidity", "foundry", "ethereum", "defi"],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|