-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.51 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
{
"name": "hardhat-ethers-waffle-ts",
"version": "1.0.0",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "npm run compile",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"fork": "npx hardhat node --fork https://eth-mainnet.alchemyapi.io/v2/....YOUR_NODE_HERE",
"fork-deploy": "npx hardhat run --network fork scripts/deploy.ts",
"dev-deploy": "npx hardhat run --network polygonMumbai scripts/deploy.ts",
"main-deploy": "npx hardhat run --network mainPolygon scripts/deploy.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@nomiclabs/buidler": "^1.4.8",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai-as-promised": "^7.1.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.6.3",
"chai-as-promised": "^7.1.1",
"chai": "^4.3.6",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-gas-reporter": "^1.0.8",
"hardhat": "^2.10.1",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@openzeppelin/contracts": "^4.7.2",
"dotenv": "^16.0.1",
"git-cz": "^4.9.0",
"keccak256": "^1.0.6",
"moment": "^2.29.4",
"standard-version": "^9.5.0"
}
}