-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.47 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
{
"name": "state-mate",
"version": "0.1.0",
"description": "Ethereum + L2s smart contract state checker",
"main": "state-checker.ts",
"license": "MIT",
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"scripts": {
"build": "tsc",
"start": "ts-node src/state-mate.ts",
"lint": "eslint . --max-warnings=0",
"lint:fix": "yarn lint --fix",
"format": "prettier . --ignore-path .gitignore --check",
"format:fix": "prettier . --ignore-path .gitignore --write",
"prepare": "husky"
},
"lint-staged": {
"./**/*.ts": [
"eslint --max-warnings=0"
],
"./**.{ts,md,json}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/compat": "^1.1.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.5.0",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.14.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.6.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"ts-node": ">=8.0.0",
"typescript": "^5.4.5"
},
"dependencies": {
"@inquirer/prompts": "^5.1.2",
"@types/chai": "^4.3.16",
"chai": "^4.4.1",
"chalk": "^4.1.2",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"ethers": "^6.13.0",
"yaml": "^2.3.4"
}
}