forked from ensdomains/evmgateway
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.55 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
{
"name": "@ensdomains/op-verifier",
"license": "MIT",
"version": "0.1.0",
"scripts": {
"build": "echo 'building op-verifier...' && bun hardhat compile",
"test": "bun hardhat test",
"clean": "rm -fr artifacts cache node_modules typechain-types",
"lint": "exit 0",
"postinstall": "find node_modules/src/src -mindepth 1 -maxdepth 1 -exec basename {} \\; | xargs -I {} sh -c 'rm -rf node_modules/src/{}; ln -s src/{} node_modules/src/{}'"
},
"devDependencies": {
"@ensdomains/op-gateway": "workspace:*",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.0",
"@nomicfoundation/hardhat-ethers": "^3.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.2.0",
"@types/express": "^4.17.18",
"@types/mocha": ">=9.1.0",
"@types/supertest": "^2.0.14",
"chai": "^4.2.0",
"ethers": "^6.8.0",
"express": "^4.18.2",
"ganache": "^7.9.1",
"hardhat": "^2.16.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "^1.0.8",
"solidity-bytes-utils": "^0.8.0",
"solidity-coverage": "^0.8.1",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@ensdomains/evm-verifier": "workspace:*",
"@eth-optimism/contracts": "^0.6.0",
"src": "npm:@eth-optimism/contracts-bedrock@0.17.3"
}
}