forked from BuildBearLabs/Tutorials
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.34 KB
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
{
"name": "hardhat-project",
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/contracts": "^4.8.3",
"@openzeppelin/contracts-upgradeable": "^4.8.2",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"axios": "^1.3.5",
"chai": "^4.3.7",
"ethereum-waffle": "^4.0.10",
"hardhat": "^2.14.0",
"inquirer": "^9.1.5",
"ora": "^6.3.0"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"ethers": "^5.7.0"
},
"scripts": {
"createTestnets": "node createTestnets.js",
"test1": "hardhat test test/artwork-test.js --network buildbear1",
"test2": "hardhat test test/ERC1155.test.js --network buildbear2",
"test3": "hardhat test test/game-item-test.js --network buildbear3",
"test4": "hardhat test test/Greeter-Test.js --network buildbear4",
"test5": "hardhat test test/simple-test.js --network buildbear5",
"test6": "hardhat test test/Token-test.js --network buildbear1",
"test7": "hardhat test test/MultiSigWallet.test.js --network buildbear2",
"test": "npm run test1 && npm run test2 && npm run test3 && npm run test4 && npm run test5 && npm run test6 && npm run test7"
}
}