forked from blockful-io/swaplace-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.72 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
40
41
42
43
44
{
"name": "swaplace",
"dependencies": {
"hardhat": "^2.12.7"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomiclabs/hardhat-etherscan": "^3.1.5",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"@openzeppelin/contracts": "^4.8.1",
"@typechain/ethers-v5": "^10.2.0",
"@typechain/hardhat": "^6.1.5",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.4",
"dotenv": "^16.0.3",
"ethers": "^5.6.1",
"hardhat-gas-reporter": "^1.0.9",
"solidity-coverage": "^0.8.2",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
},
"scripts": {
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"docs": "npx hardhat docgen",
"test": "npx hardhat test",
"mint": "npx hardhat run scripts/mint.ts --network $1",
"create-swap": "npx hardhat run scripts/createSwap.ts --network $1",
"accept-swap": "npx hardhat run scripts/acceptSwap.ts --network $1",
"cancel-swap": "npx hardhat run scripts/cancelSwap.ts --network $1",
"approve": "npx hardhat run scripts/approve.ts --network $1",
"deploy:mocks": "npx hardhat run scripts/deployMock.ts --network $1",
"deploy:swaplace": "npx hardhat run scripts/deploy.ts --network $1",
"compile-echidna": "crytic-compile . && slither . --print echidna",
"fuzz-p": "echidna . --contract TestSwaplace --test-mode property --config echidna.config.yml",
"fuzz-a": "echidna . --contract TestSwaplace --test-mode assertion --config echidna.config.yml"
}
}