-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.42 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.42 KB
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
{
"name": "reentrancy-dissector",
"version": "1.0.0",
"description": "A tool for detecting and analyzing reentrancy patterns in EVM transactions.",
"private": true,
"scripts": {
"build": "tsc -b tsconfig.build.json",
"start": "dotenvx run -- tsx tasks/main.ts",
"test": "jest",
"evaluate:first": "dotenvx run -- tsx tasks/evaluation.ts --total=first",
"evaluate:all": "dotenvx run -- tsx tasks/evaluation.ts --total=all",
"evaluate:fp": "dotenvx run -- tsx tasks/evaluation.ts --type=fp",
"fix-database": "dotenvx run -- tsx tasks/database-fix.ts",
"create-fp-dataset": "dotenvx run -- tsx tasks/fp-dataset-creation.ts",
"export:fp": "dotenvx run -- tsx tasks/export.ts"
},
"author": "Yuqi Liu",
"license": "LGPL-3.0-only",
"dependencies": {
"@dotenvx/dotenvx": "^1.43.0",
"@shazow/whatsabi": "^0.21.1",
"basic-type-extensions": "^4.4.0",
"chalk": "^4.1.2",
"class-transformer": "^0.5.1",
"cli-progress": "^3.12.0",
"date-fns": "^4.1.0",
"fetch-throttler": "^1.3.0",
"js-sha3": "^0.9.3",
"pg": "^8.15.6",
"reflect-metadata": "^0.2.2",
"typeorm": "^0.3.22"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/jest": "^29.5.14",
"@types/node": "^22.15.11",
"@types/pg": "^8.15.1",
"@types/yargs": "^17.0.33",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"type-fest": "^4.40.1",
"typescript": "^5.8.3",
"yargs": "^18.0.0"
}
}