-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·33 lines (33 loc) · 1.09 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
{
"name": "aave-permissions-list",
"description": "This repo is containing scripts for calculating and showing addresses which hold permissions inside all contracts of Aave protocol. Tables with permissions are shown in the [out](./out/) folder.",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"modifiers:generate": "tsx scripts/modifiersCalculator.ts",
"tables:create": "tsx scripts/createTables.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/aave-permissions-list.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bgd-labs/aave-permissions-list/issues"
},
"homepage": "https://github.com/bgd-labs/aave-permissions-list#readme",
"devDependencies": {
"@aave/contract-helpers": "^1.18.2",
"@bgd-labs/aave-address-book": "4.10.1-b18cf06c402bad063e85f61267400356246e346a.0",
"@types/node": "^18.8.3",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"prettier": "^2.8.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.0",
"typescript": "^5.1.6"
}
}