-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.81 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
{
"scripts": {
"node": "hardhat node",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true npx hardhat test",
"coverage": "REPORT_COVERAGE=true npx hardhat coverage",
"lint": "npm run lint:js && npm run lint:sol",
"lint:js": "eslint --ignore-path .gitignore . --fix",
"lint:sol": "prettier --write \"contracts/**/*.sol\""
},
"dependencies": {
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"bip39": "^3.0.4",
"erc721a": "^3.1.0",
"ethereumjs-wallet": "^1.0.1",
"ethpm": "^0.1.0-next.32",
"global": "^4.4.0",
"hardhat": "^2.5.0",
"prompt-confirm": "^2.0.4",
"typescript": "^4.6.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.4",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.9.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.2.0",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"eslint": "^8.7.0",
"eslint-plugin-mocha": "^10.0.3",
"eslint-plugin-node": "^11.1.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.2",
"hardhat-dependency-compiler": "^1.1.1",
"hardhat-deploy": "^0.8.11",
"hardhat-deploy-ethers": "^0.3.0-beta.10",
"hardhat-gas-reporter": "^1.0.7",
"hardhat-tracer": "^1.0.0-alpha.6",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solidity-coverage": "^0.7.20",
"ts-node": "^8.10.2",
"typechain": "^5.1.2"
}
}