forked from ldeffenb/monSI
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
96 lines (96 loc) · 2.17 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": "@rndlabs/monsi",
"version": "1.0.0",
"publishConfig": {
"access": "public"
},
"description": "Monitor Bee Swarm Storage Incentives",
"main": "./dist/src/index.js",
"bin": {
"monsi": "dist/src/index.js"
},
"scripts": {
"prepare": "husky install",
"build": "tsc",
"test": "echo \"Warning: no tests specified\" && exit 0",
"lint": "eslint . --ext .ts && prettier -c .",
"lint:fix": "eslint . --ext .ts --fix && prettier -w .",
"commit": "git-cz",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"author": "ldeffenb",
"contributors": [
{
"name": "mfw78",
"email": "[email protected]"
}
],
"license": "BSD-3-Clause",
"dependencies": {
"abi-decoder": "^2.4.0",
"blessed": "^0.1.81",
"commander": "^9.4.1",
"dotenv": "^16.0.1",
"ethers": "^5.7.2",
"semaphore": "^1.1.0",
"sorted-btree": "^1.8.1",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@typechain/ethers-v5": "^10.1.0",
"@types/blessed": "^0.1.19",
"@types/semaphore": "^1.1.1",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"conventional-changelog-cli": "^2.2.2",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unicorn": "^44.0.2",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typechain": "^8.1.0",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{ts,json}": "prettier --write"
},
"eslintConfig": {
"extends": [
"prettier",
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"unicorn"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
],
"no-duplicate-imports": "off",
"@typescript-eslint/no-duplicate-imports": [
"error"
],
"new-cap": "off",
"prefer-reflect": "off"
}
},
"eslintIgnore": [
"build/*"
],
"type": "module",
"engines": {
"node": ">=18"
}
}