-
Notifications
You must be signed in to change notification settings - Fork 220
/
package.json
42 lines (42 loc) · 1.32 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
{
"name": "address-groups",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"main": "ts-node ./src/main.ts",
"lint": "eslint --fix \"src/**/*\"",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf output",
"get-addresses-on-eligible-list": "ts-node ./src/scripts/getAddressesOnEligibleList.ts",
"get-sybil-report-token-amount": "ts-node ./src/scripts/getSybilReportTokenAmount.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/csv-parse": "^1.2.2",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.178",
"@types/node": "^16.11.4",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"csv-parse": "^5.0.4",
"csv-writer": "^1.6.0",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-unused-imports": "^1.1.2",
"ethers": "^5.6.4",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"node-fetch": "^2.0.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}