Skip to content

Commit

Permalink
chore: init package json
Browse files Browse the repository at this point in the history
  • Loading branch information
pierobassa committed Jun 11, 2024
0 parents commit 1291842
Showing 1 changed file with 65 additions and 0 deletions.
65 changes: 65 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
{
"name": "@repo/contracts",
"version": "0.0.1",
"main": "index.ts",
"types": "index.ts",
"license": "MIT",
"scripts": {
"check-or-generate-local-config": "ts-node ./config/scripts/generateMockLocalConfig.ts",
"compile": "yarn check-or-generate-local-config && npx hardhat compile",
"test:thor-solo": "yarn check-or-generate-local-config && yarn start-solo && dotenv -v NEXT_PUBLIC_APP_ENV=local -e .env.example -- npx hardhat test",
"test:hardhat": "yarn check-or-generate-local-config && dotenv -v NEXT_PUBLIC_APP_ENV=local -e .env.example -- hardhat test --network hardhat",
"test:coverage:solidity": "yarn check-or-generate-local-config && dotenv -v NEXT_PUBLIC_APP_ENV=local -v IS_TEST_COVERAGE=true -e .env.example -- hardhat coverage --testfiles ./test/**/*test.ts",
"deploy": "yarn check-or-generate-local-config && yarn start-solo && dotenv -v NEXT_PUBLIC_APP_ENV=local -e .env.example -- npx hardhat run scripts/checkContractsDeployment.ts",
"deploy:simulation": "export RUN_SIMULATION=true; yarn deploy",
"start-solo": "make solo-up",
"stop-solo": "make solo-down",
"clean": "rm -rf dist artifacts typechain-types cache node_modules",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix",
"generate-docs": "npx hardhat docgen"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^5.0.2",
"@openzeppelin/contracts-upgradeable": "^5.0.2",
"@openzeppelin/upgrades-core": "^1.32.5",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": ">=9.1.0",
"@vechain/hardhat-ethers": "^0.1.4",
"@vechain/hardhat-vechain": "^0.1.4",
"@vechain/sdk-network": "1.0.0-beta.5",
"@vechain/sdk-wallet": "^1.0.0-beta.3",
"@vechain/web3-providers-connex": "^1.1.2",
"chai": "^4.2.0",
"dotenv": "^16.3.1",
"hardhat": "^2.19.1",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-ignore-warnings": "^0.2.11",
"solidity-coverage": "^0.8.11",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": ">=8.0.0",
"typechain": "^8.1.0",
"typescript": ">=4.5.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.4.3",
"dotenv-cli": "^7.4.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.9.0",
"hardhat": "^2.19.1",
"nft.storage": "^7.1.1",
"prettier": "^3.2.4"
}
}

0 comments on commit 1291842

Please sign in to comment.