-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.66 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
45
46
47
48
49
50
51
52
53
54
{
"name": "stableunit_v2",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npx hardhat test --show-stack-traces",
"coverage": "npx hardhat coverage",
"generate-types": "rm -rf ./types && truffle compile && typechain --target=truffle-v5 'build/contracts/*.json'",
"migrate": "tsc -p ./tsconfig.migrate.json --outDir ./migrations && truffle migrate --network rinkeby",
"typecheck": "tsc --noEmit",
"compile": "truffle compile && npm run generate-types && npm run typecheck",
"verify-rinkeby": ""
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethersproject/abstract-signer": "^5.5.0",
"@ethersproject/constants": "^5.5.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.3.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@truffle/hdwallet-provider": "^1.2.6",
"@typechain/truffle-v5": "^5.1.0",
"@types/bn.js": "^4.11.6",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/web3": "^1.2.2",
"bn-chai": "^1.0.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.4.7",
"hardhat": "^2.1.2",
"mocha": "^9.1.3",
"path": "^0.12.7",
"solidity-coverage": "^0.7.16",
"truffle-assertions": "^0.9.2",
"truffle-plugin-verify": "^0.5.7",
"ts-node": "^9.1.1",
"typechain": "^5.2.0",
"typescript": "^4.2.3",
"web3": "^1.3.5"
},
"devDependencies": {
"solc": "^0.8.9"
}
}