-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.12 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.12 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
{
"name": "justflash-protocol",
"version": "1.0.0",
"description": "First Production-Grade Flashloan Infrastructure for TRON",
"main": "index.js",
"scripts": {
"compile": "tronbox compile",
"migrate": "tronbox migrate",
"migrate:nile": "tronbox migrate --network nile",
"migrate:shasta": "tronbox migrate --network shasta",
"migrate:mainnet": "tronbox migrate --network mainnet",
"test": "tronbox test",
"test:nile": "tronbox test --network nile",
"console": "tronbox console",
"console:nile": "tronbox console --network nile",
"lint": "solhint 'contracts/**/*.sol'",
"lint:fix": "solhint 'contracts/**/*.sol' --fix",
"clean": "rm -rf build/",
"bootstrap": "node scripts/bootstrap.js",
"bootstrap:nile": "node scripts/bootstrap.js --network nile"
},
"keywords": [
"tron",
"flashloan",
"defi",
"trc20",
"tvm"
],
"author": "JustFlash Protocol",
"license": "MIT",
"devDependencies": {
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.3.1",
"solhint": "^4.0.0",
"tronbox": "^3.3.0"
},
"dependencies": {
"tronweb": "^5.3.0"
}
}