-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.41 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
{
"name": "Bluemoon-NFT-Evolution",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"generate:typechain": "npm run generate:oz-typechain && npm run generate:own-typechain",
"generate:oz-typechain": "npx typechain --target ethers-v5 --out-dir typechain/openzeppelin \"./artifacts/@openzeppelin/**/+([a-zA-Z0-9_]).json\"",
"generate:own-typechain": "npx typechain --target ethers-v5 --out-dir typechain/pulse \"./artifacts/contracts/**/+([a-zA-Z0-9_]).json\""
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@openzeppelin/contracts": "^4.4.1",
"dotenv": "^16.0.3",
"solidity-coverage": "^0.8.2"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@typechain/ethers-v5": "10.0.0",
"@typechain/hardhat": "^6.1.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"chai": "^4.3.4",
"ethers": "5.6.9",
"evm-chains": "^0.2.0",
"hardhat": "^2.8.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-ethers": "^1.0.1",
"hardhat-gas-reporter": "^1.0.6",
"mocha": "^9.1.3",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^8.0.0",
"typescript": "^4.1.3"
}
}