-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (37 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (37 loc) · 1.32 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
35
36
37
38
{
"name": "t2-contracts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "hardhat compile",
"deploy:testnet": "hardhat run --network polygonAmoy scripts/deploy.js",
"deploy:local": "hardhat run --network localhost scripts/deploy.js",
"start:local": "hardhat node",
"mine": "hardhat run --network localhost scripts/mine.js",
"test": "hardhat test ./test/*.test.js --network hardhat --parallel",
"test:coverage": "hardhat coverage",
"test:buy": "hardhat test ./test/buy.test.js --network hardhat",
"test:convert": "hardhat test ./test/convert.test.js --network hardhat",
"test:plant": "hardhat test ./test/plant.test.js --network hardhat",
"test:harvest": "hardhat test ./test/harvest.test.js --network hardhat",
"test:season": "hardhat test ./test/season.test.js --network hardhat"
},
"author": "jsonDoge",
"license": "ISC",
"dependencies": {
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomiclabs/hardhat-web3": "2.0.0",
"@openzeppelin/contracts": "5.0.1",
"bn.js": "5.2.1",
"ethers": "5.7.2",
"hardhat": "2.22.4"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.2.3",
"chai": "4.3.10",
"eslint": "^8.56.0",
"hardhat-contract-sizer": "2.10.0",
"solidity-coverage": "^0.8.5"
}
}