-
Notifications
You must be signed in to change notification settings - Fork 219
/
package.json
56 lines (56 loc) · 2.33 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
{
"private": true,
"name": "aa-bundler",
"version": "0.2.0",
"author": "Dror Tirosh",
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"submodules/account-abstraction/contracts",
"submodules/rip7560"
],
"nohoist": [
"**eslint**"
]
},
"scripts": {
"bundler": "yarn --cwd packages/bundler bundler",
"bundler-rip7560": "yarn --cwd packages/bundler bundler-rip7560",
"runop": "yarn --cwd packages/bundler runop",
"runop-goerli": "yarn runop --network goerli --unsafe",
"create-all-deps": "jq '.dependencies,.devDependencies' packages/*/package.json |sort -u > all.deps",
"depcheck": "lerna exec --no-bail --stream --parallel -- npx depcheck --ignores @account-abstraction/contracts,@openzeppelin/contracts,@uniswap/v3-periphery",
"hardhat-node": "lerna run hardhat-node --stream --no-prefix --",
"hardhat-deploy": "lerna run hardhat-deploy --stream --no-prefix --",
"lerna-clear": "lerna run clear",
"lerna-lint": "lerna run lint --stream --parallel -- ",
"lerna-test": "lerna run hardhat-test --stream --",
"lerna-tsc": "lerna run tsc --scope @account-abstraction/*",
"lerna-watch-tsc": "lerna run --parallel watch-tsc",
"lint-fix": "lerna run lint-fix --parallel",
"clear": "lerna run clear",
"hardhat-compile": "lerna run hardhat-compile",
"preprocess": "yarn preprocess1 && yarn preprocess2",
"preprocess2": "yarn lerna-clear && yarn hardhat-compile && yarn lerna-tsc",
"preprocess1": "yarn submodule-update && yarn && cd submodules/account-abstraction && yarn && yarn --cwd contracts prepack",
"submodule-update": "git submodule update --remote --init --recursive",
"runop-self": "ts-node ./packages/bundler/src/runner/runop.ts --deployFactory --selfBundler --unsafe",
"ci": "env && yarn depcheck && yarn preprocess && yarn lerna-test"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"depcheck": "^1.4.3",
"eslint": "^8.21.0",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"lerna": "^5.4.0",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"packageManager": "[email protected]"
}