-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.5 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": "ldy-token",
"version": "1.0.0",
"scripts": {
"cc:test": "forge test -vvv --use 0.8.20",
"cc:slither:report": "slither ./hardhat --compile-force-framework hardhat --checklist > report.md ",
"cc:slither:triage": "slither ./hardhat --compile-force-framework hardhat --triage-mode",
"cc:slither:pausable": "slither ./hardhat --compile-force-framework hardhat --print not-pausable",
"cc:node": "hardhat node --hostname 0.0.0.0",
"cc:compile": "hardhat compile && hardhat export --export-all deployments.json && ts-node scripts/extract-abis.ts",
"cc:deploy:goerli": "npx hardhat deploy --network ethereumGoerli",
"cc:deploy:mainnet": "npx hardhat deploy --network ethereum",
"cc:deploy:arbitrum": "npx hardhat deploy --network arbitrum",
"cc:deploy:base": "npx hardhat deploy --network base"
},
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/contracts": "4.8.3",
"@types/node": "^20.10.6",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"hardhat": "^2.19.4",
"hardhat-contract-sizer": "^2.10.0",
"hardhat-deploy": "^0.11.45",
"prettier": "^3.1.1",
"prettier-plugin-solidity": "^1.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"hardhat-safe-deployer": "github:DCAStack/hardhat-safe-deployer",
"viem": "^2.9.31"
}
}