-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "fathom-stablecoin-smart-contracts",
"version": "1.0.0",
"description": "Fathom stablecoin",
"scripts": {
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"format": "prettier --write .",
"compile": "hardhat compile",
"test": "hardhat test",
"node": "hardhat node --tags DeployMain",
"deploy-local": "hardhat deploy --deploy-scripts deploy/deploy-main --network hardhat",
"deploy-xdc": "hardhat deploy --deploy-scripts deploy/deploy-main --network xdc",
"deploy-apothem": "hardhat deploy --deploy-scripts deploy/deploy-main --network apothem",
"deploy-tokens-local": "hardhat deploy --deploy-scripts deploy/deploy-tokens --network hardhat",
"deploy-tokens-xdc": "hardhat deploy --deploy-scripts deploy/deploy-tokens --network xdc",
"deploy-tokens-apothem": "hardhat deploy --deploy-scripts deploy/deploy-tokens --network apothem",
"deploy-add-collateral-local": "hardhat deploy --deploy-scripts deploy/deploy-add-collateral --network hardhat",
"deploy-add-collateral-xdc": "hardhat deploy --deploy-scripts deploy/deploy-add-collateral --network xdc",
"deploy-add-collateral-apothem": "hardhat deploy --deploy-scripts deploy/deploy-add-collateral --network apothem"
},
"author": "",
"license": "",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"dotenv": "^16.4.5",
"hardhat": "^2.22.12",
"hardhat-deploy": "^0.12.4",
"prettier": "^3.3.3",
"prettier-plugin-solidity": "^1.4.1",
"solhint": "^5.0.3",
"solhint-plugin-prettier": "^0.1.0"
},
"dependencies": {
"@defi-wonderland/smock": "^2.4.0",
"@openzeppelin/contracts": "4.9.2",
"@openzeppelin/contracts-upgradeable": "4.9.2"
}
}