-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "multichain-automaton",
"version": "0.0.1",
"description": "Multichain Automation for stETH and wstETH bridge deployments on OP-stack compatible networks",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"scripts": {
"lint:ts": "eslint . --max-warnings=10",
"lint:ts:fix": "yarn lint:ts --fix",
"lint": "yarn lint:ts",
"format": "prettier . --write",
"typecheck": "tsc src/*.ts --noEmit",
"prepare": "husky",
"start": "ts-node src/main.ts"
},
"lint-staged": {
"./**/*.ts": [
"eslint --max-warnings=10"
],
"./**/*.{ts,md,json}": [
"prettier --write"
]
},
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.4",
"yaml": "^2.6.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.11.1",
"@types/cli-progress": "^3",
"@types/node": "^22.9.1",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-only-tests": "^3.3.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-simple-import-sort": "12.1.1",
"hardhat": "^2.22.16",
"hardhat-deploy": "^0.14.0",
"hardhat-tracer": "3.1.0",
"hardhat-watcher": "2.5.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.7.0"
}
}