-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.46 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
{
"name": "wallets-tracker",
"version": "1.0.1",
"description": "Track wallets activity across multiple chains.",
"repository": {
"type": "git",
"url": "git+https://github.com/marc-aurele-besner/wallets-tracker.git"
},
"author": "Marc-Aurele Besner <[email protected]>",
"license": "MIT",
"main": "index.js",
"bugs": {
"url": "https://github.com/marc-aurele-besner/wallets-tracker/issues"
},
"keywords": [
"wallets",
"tracker",
"blockchain",
"ethereum",
"tokens"
],
"scripts": {
"prettier-scripts": "prettier --write scripts/",
"track": "npx hardhat run scripts/trackWallets.ts",
"generateReport": "npx hardhat run scripts/trackWalletsAndGenerateReport.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts-upgradeable": "^5.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"awesome-readme": "^0.0.8",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"eslint": "^8.35.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"ethers": "^6.13.1",
"hardhat": "^2.13.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}