-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "chillwhales-tracker",
"version": "1.0.0",
"authors": [
"Markus Velten"
],
"main": ".build/src/index.js",
"license": "MIT",
"scripts": {
"sync": "ts-node src/index.ts",
"rarity": "ts-node src/tools/rarity-refresh.ts",
"wallet": "ts-node src/wallet-insights.ts",
"find": "ts-node src/asset-finder.ts",
"build": "tsc",
"format-check": "prettier --config .prettierrc --check ./{src,tests}/**/*.ts",
"format": "yarn format-check --write",
"ts-watch": "tsc --watch",
"lint": "eslint --ext .ts src/"
},
"dependencies": {
"@erc725/erc725.js": "^0.21.2",
"@erc725/smart-contracts": "^6.0.0",
"@inquirer/prompts": "^4.0.0",
"axios": "^1.6.7",
"blessed": "^0.1.81",
"chalk": "^4",
"dayjs": "^1.11.10",
"web3": "^4.4.0"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/chalk": "^2.2.0",
"@types/node": "^20.11.10",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"pre-commit": "^1.2.2",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"pre-commit": [
"lint",
"format-check"
]
}