generated from ChainSafe/yarn-workspaces-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.45 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.45 KB
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": "multichain-deploy-example",
"private": true,
"version": "1.0.0",
"scripts": {
"lint": "eslint --color --ext .ts scripts/",
"lint:fix": "yarn run lint --fix",
"build": "hardhat compile",
"hardhat": "hardhat",
"deploy:deployMultichain": "yarn hardhat run scripts/deployMultichain.ts --network sepolia",
"deploy:deployMultichainBytecode": "yarn hardhat run scripts/deployMultichainBytecode.ts --network sepolia",
"deploy:localhost": "yarn hardhat run scripts/localhost.ts"
},
"devDependencies": {
"@buildwithsygma/sygma-sdk-core": "^2.7",
"@chainsafe/hardhat-plugin-multichain-deploy": "workspace:^",
"@chainsafe/hardhat-ts-artifact-plugin": "^1.0.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.4",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"@nomicfoundation/hardhat-web3-v4": "^1.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.2.0",
"@types/eslint": "^8",
"@types/mocha": ">=9.1.0",
"@types/node": ">=16.0.0",
"chai": "4",
"eslint": "^8",
"ethers": "^6.11.0",
"hardhat": "^2.19.5",
"hardhat-gas-reporter": "^1.0.10",
"solidity-coverage": "^0.8.7",
"ts-node": ">=8.0.0",
"typechain": "^8.3.2",
"typescript": ">=4.5.0",
"web3": "^4.5.0"
}
}