-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
96 lines (96 loc) · 3.77 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ens_bedrock_resolver",
"version": "0.2.0",
"description": "",
"scripts": {
"debug": "npx hardhat test ",
"compile": "hardhat compile",
"test:e2e": "docker-compose -f ./docker/docker-compose-e2e.yml up -d && npx hardhat test test/e2e/**",
"test": "hardhat test ./test/contracts/**",
"test:e2e-setup": "npx hardhat run scripts/e2e/setupBedrockTestEnvironment.ts",
"lint:fix": "prettier --write 'scripts/**/*.{js,ts}' 'test/**/*.{js,ts}' 'tasks/**/*.{js,ts}' && tslint --fix --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
"lint": "tslint --config tslint.json --project tsconfig.json && solhint contracts/**/*.sol",
"format": "prettier --check \"**/*.{ts,js,sol}\"",
"format:fix": "prettier --write \"**/*.{ts,js,sol}\"",
"build": "yarn hardhat compile && yarn tsc -p tsconfig-build.json",
"dev": " node dist/server/index.js",
"docker:build": "docker build -t ens-bedrock-resolver -f ./Dockerfile .",
"deploy:l1-proof-verifier": "npx hardhat run ./deploy/l1/00_BedrockProofVerifier.ts",
"deploy:l2-resolver": "npx hardhat run deploy/l2/01_L2Public_Resolver.ts",
"deploy:l1-resolver-verifier": "npx hardhat run ./deploy/l1/01_L2Public_Resolver_Verifier.ts",
"deploy:l1-resolver": "npx hardhat run ./deploy/l1/02_ERC3668_Resolver.ts",
"start": "docker compose up -d "
},
"files": [
"dist/src/",
"src/",
"LICENSE",
"README.md"
],
"author": "Alex Plutta [email protected]",
"license": "MIT",
"devDependencies": {
"@ensdomains/address-encoder": "^0.2.21",
"@nomiclabs/hardhat-ethers": "^2.0.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-solhint": "^2.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.4.0",
"@pinata/sdk": "^1.1.23",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"axios-mock-adapter": "^1.21.5",
"babel-eslint": "^10.1.0",
"chai": "^4.3.4",
"chai-bignumber": "^3.0.0",
"chai-bn": "^0.3.0",
"chai-ethers": "^0.0.1",
"dns-packet": "^5.6.0",
"dotenv": "^10.0.0",
"ethers": "^5.5.2",
"hardhat": "^2.7.1",
"hardhat-deploy": "^0.9.14",
"hardhat-storage-layout": "^0.1.7",
"hardhat-tracer": "^1.2.1",
"merkle-patricia-tree": "^4.2.4",
"mocha-skip-if": "^0.0.3",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"random-bytes-seed": "^1.0.3",
"rlp": "^3.0.0",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.17",
"supertest": "^6.3.3",
"transform": "^1.1.2",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^6.0.5",
"typescript": "^4.5.3",
"web3": "^1.6.1"
},
"mocha": {
"timeout": 10000000
},
"dependencies": {
"@defi-wonderland/smock": "^2.3.4",
"@ensdomains/buffer": "0.0.10",
"@ensdomains/dnssec-oracle": "0.1.2",
"@ensdomains/ens-contracts": "^0.0.19",
"@eth-optimism/contracts": "^0.5.40",
"@eth-optimism/sdk": "^2.0.2",
"ccip-resolver": "^0.2.7",
"cors": "^2.8.5",
"express": "^4.18.2",
"solidity-bytes-utils": "^0.8.0",
"winston": "^3.9.0"
}
}