-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 3.39 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@bulla-network/contracts",
"version": "0.0.11-beta-0.3",
"license": "MIT",
"files": [
"contracts/interfaces",
"artifacts/contracts/**/*.json",
"!artifacts/contracts/**/*.dbg.json",
"typechain"
],
"scripts": {
"compile": "npx hardhat compile && npx tsc --project tsconfig.json",
"build": "npm run compile",
"test": "npx hardhat test",
"run-node": "npx hardhat node --fork https://rpc.xdaichain.com",
"dev": "npx hardhat node",
"deploy:hardhat": "npx hardhat run --network localhost scripts/deploy-hardhat.ts",
"deploy:mainnet": "npx hardhat run --network mainnet scripts/deploy.ts",
"deploy:rinkeby": "npx hardhat run --network rinkeby scripts/deploy.ts",
"deploy:goerli": "npx hardhat run --network goerli scripts/deploy.ts",
"deploy:base": "npx hardhat run --network base scripts/deploy.ts",
"deploy:base_goerli": "npx hardhat run --network base_goerli scripts/deploy.ts",
"deploy:xdai": "npx hardhat run --network xdai scripts/deploy.ts",
"deploy:avalanche": "npx hardhat run --network avalanche_cChain scripts/deploy.ts",
"deploy:harmony": "npx hardhat run --network harmony scripts/deploy.ts",
"deploy:harmony_testnet": "npx hardhat run --network harmony_testnet scripts/deploy.ts",
"deploy:polygon": "npx hardhat run --network polygon scripts/deploy.ts",
"deploy:rsk": "npx hardhat run --network rsk scripts/deploy.ts",
"deploy:celo": "npx hardhat run --network celo scripts/deploy.ts",
"deploy:aurora": "npx hardhat run --network aurora scripts/deploy.ts",
"deploy:moonbeam": "npx hardhat run --network moonbeam scripts/deploy.ts",
"deploy:arbitrum": "npx hardhat run --network arbitrum scripts/deploy.ts",
"deploy:fuse": "npx hardhat run --network fuse scripts/deploy.ts",
"deploy:optimism": "npx hardhat run --network optimism scripts/deploy.ts",
"deploy:bnb": "npx hardhat run --network bnb scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"verify:sepolia": "npx hardhat run --network sepolia scripts/verify.ts",
"verify": "hardhat etherscan-verify"
},
"dependencies": {
"@gnosis.pm/safe-contracts": "^1.3.0",
"@gnosis.pm/zodiac": "^1.0.3",
"@types/node": "^16.9.1",
"ethers": "^5.4.2"
},
"devDependencies": {
"@noble/secp256k1": "^1.5.5",
"@nomiclabs/hardhat-ethers": "2.1.0",
"@nomiclabs/hardhat-etherscan": "^3.1.3",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.2.0",
"@typechain/ethers-v5": "^7.1.0",
"@typechain/hardhat": "^2.3.0",
"@types/bs58": "^4.0.1",
"@types/mocha": "^8.2.0",
"bs58": "^4.0.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"ethereum-waffle": "^3.4.0",
"fast-check": "^2.22.0",
"hardhat": "^2.12.6",
"hardhat-contract-sizer": "^2.0.3",
"hardhat-deploy": "^0.11.22",
"hardhat-gas-reporter": "^1.0.4",
"hardhat-typechain": "^0.3.5",
"keccak256": "^1.0.6",
"solc": "0.7.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.8.0",
"tsc": "^2.0.3",
"typechain": "^8.0.2",
"typescript": "^4.1.3"
}
}