-
Notifications
You must be signed in to change notification settings - Fork 210
/
package.json
119 lines (119 loc) · 5.35 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"@nomicfoundation/hardhat-ethers",
"**/ethers",
"**/ethers/**",
"**eslint**",
"**stdjsonin**",
"**ts-node**"
]
},
"contributors": [
{
"name": "Dror Tirosh",
"email": "[email protected]"
},
{
"name": "Yoav Weiss",
"email": "[email protected]"
},
{
"name": "Shahaf Nacson",
"email": "[email protected]"
},
{
"name": "Alex Forshtat",
"email": "[email protected]"
}
],
"scripts": {
"test": "yarn preprocess && yarn lerna-run-test-with-hardhat",
"hardhat-fork-mainnet": "CHAINID=1 hardhat node --port 8544 --fork https://mainnet.infura.io/v3/f40be2b1a3914db682491dc62a19ad43 --fork-block-number 16814541",
"hardhat-fork-goerli": "CHAINID=5 hardhat node --port 8544 --fork https://goerli.infura.io/v3/f40be2b1a3914db682491dc62a19ad43 --fork-block-number 8806897",
"preprocess": "yarn lerna-rm-dist && yarn lerna-typechain-generate && yarn extract_abi && yarn lerna-tsc && yarn lerna-chmod-commands",
"preprocess-paymasters": "yarn lerna-rm-dist --scope @opengsn/paymasters && yarn lerna-typechain-generate-paymasters && yarn extract_abi_paymasters && yarn lerna-tsc-paymasters",
"extract_abi": "./scripts/extract_abi.js",
"extract_abi_paymasters": "./scripts/extract_abi.js paymasters",
"solpp": "./scripts/solpp.js",
"tsc": "yarn lerna-tsc",
"lerna-typechain-generate": "lerna run typechain-generate --stream --ignore @opengsn/paymasters && lerna run typechain-generate-truffle --stream --ignore @opengsn/paymasters",
"lerna-typechain-generate-paymasters": "lerna run typechain-generate --stream --scope @opengsn/paymasters",
"lerna-publish": "lerna publish --pre-dist-tag next",
"lerna-publish-force-no-git": "lerna publish --no-push --no-git-tag-version --force-publish",
"lerna-chmod-commands": "lerna run chmod-commands",
"lerna-tsc": "lerna run tsc --ignore @opengsn/paymasters",
"lerna-tsc-paymasters": "lerna run tsc --scope @opengsn/paymasters",
"lerna-watch-tsc": "lerna run --parallel watch-tsc",
"lerna-lint": "lerna run lint --stream --parallel --ignore @opengsn/paymasters",
"lerna-lint-paymasters": "lerna run lint --stream --parallel --scope @opengsn/paymasters",
"lerna-lint-fix": "lerna run lint-fix --stream --parallel",
"lerna-rm-dist": "lerna run rm-dist",
"lerna-run-test": "yarn lerna-tsc && lerna run test --stream --no-prefix",
"lerna-run-gas-calculations": "lerna run gas-calculations --stream --no-prefix",
"lerna-run-test-webpack": "lerna run test-webpack --stream --no-prefix",
"lerna-run-test-webpack-with-hardhat": "run-with-hardhat-node --port 8544 'yarn lerna-run-test-webpack'",
"lerna-run-gas-calculations-with-hardhat": "run-with-hardhat-node --port 8544 'yarn lerna-run-gas-calculations'",
"lerna-run-test-fork": "lerna run test-fork --stream --no-prefix",
"lerna-run-test-only": "lerna run test-only --stream --ignore @opengsn/paymasters",
"lerna-run-test-paymasters-only": "lerna run test-only --stream --scope @opengsn/paymasters",
"lerna-run-test-with-hardhat": "run-with-hardhat-node --port 8544 'yarn lerna-run-test'",
"lerna-run-test-only-with-hardhat": "run-with-hardhat-node --port 8544 'yarn lerna-run-test-only'",
"lerna-run-test-paymasters-only-with-hardhat": "run-with-hardhat-node --port 8544 'yarn lerna-run-test-paymasters-only'",
"verdaccio-start": "yarn verdaccio-clean && yarn verdaccio-run",
"verdaccio-publish": "lerna publish --no-git-tag-version --no-push --no-git-reset --registry http://localhost:4873",
"verdaccio-run": "verdaccio --config verdaccio/verdaccio.yaml",
"verdaccio-clean": "rm -rf verdaccio/db",
"depcheck": "lerna exec --no-bail --stream -- npx depcheck",
"create-all-deps": "jq '.dependencies,.devDependencies' packages/*/package.json |sort -u > all.deps"
},
"devDependencies": {
"@metamask/eth-sig-util": "^5.1.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@truffle/hdwallet-provider": "^2.0.10",
"@typechain/ethers-v5": "^11.1.1",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.2.0",
"@types/web3": "1.0.20",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/typescript-estree": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"bn.js": "^5.2.0",
"depcheck": "^1.4.3",
"eslint": "^8.50.0",
"eslint-config-standard": "^17.1.0",
"eslint-config-standard-with-typescript": "^39.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^16.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"ethereumjs-abi": "^0.6.8",
"ethers": "^6.6.5",
"ethers-v6": "npm:ethers@^6.6.5",
"lerna": "^5.1.8",
"run-with-hardhat-node": "^0.4.3",
"solpp": "^0.11.5",
"truffle": "5.1.26",
"ts-node": "8.6.2",
"ts-loader": "^9.4.4",
"typechain": "^8.3.1",
"typescript": "^5.2.2",
"verdaccio": "^5.13.3",
"web3": "^1.7.3",
"web3-core": "^1.7.3",
"web3-core-helpers": "^1.7.3",
"web3-eth": "^1.7.3",
"web3-eth-abi": "^1.7.3",
"web3-eth-accounts": "^1.7.4",
"web3-eth-contract": "^1.7.4",
"web3-utils": "^1.7.3",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
}
}