-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 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
{
"name": "@unicrowio/contracts",
"version": "1.2.2",
"license": "MIT",
"scripts": {
"build": "yarn clean && hardhat compile",
"clean": "hardhat clean",
"test": "hardhat test",
"deploy:local": "hardhat run ./scripts/deploy-direct.ts --network localhost",
"deploy:arbitrumSepolia": "hardhat run ./scripts/deploy-direct.ts --network arbitrumSepolia",
"deploy:arbitrum:viasafe": "hardhat deploy --network arbitrum",
"deploy:base:viasafe": "hardhat deploy --network base",
"deploy:baseSepolia:viasafe": "hardhat deploy --network baseSepolia"
},
"devDependencies": {
"@ethersproject/address": "5.7.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "^3.0.0",
"@nomiclabs/hardhat-truffle5": "^2.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.19",
"chai": "^4.3.4",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "^2.6.4",
"hardhat-deploy": "^0.11.22",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-safe-deployer": "github://unicrowio/hardhat-safe-deployer",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"ts-node": "^10.5.0",
"typechain": "^8.3.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@openzeppelin/contracts": "4.6.0"
}
}