-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 934 Bytes
/
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
{
"name": "rewards-distribution-javascore",
"version": "1.0.0",
"description": "This repository contains the code for the rewards distribution smart contract (source code) and the scripts for deploying the contract.",
"main": "index.js",
"scripts": {
"deploy": "node scripts/deploy.js",
"update-contract": "node scripts/update-contract.js",
"setup-contract": "node scripts/setup-contract.js",
"icx-fund-contract": "node scripts/icx-fund-contract.js",
"baln-fund-contract": "node scripts/baln-fund-contract.js",
"add-icx-rewards": "node scripts/add-icx-rewards.js",
"add-baln-rewards": "node scripts/add-baln-rewards.js"
},
"keywords": [],
"author": "fidelve",
"license": "ISC",
"dependencies": {
"dotenv": "^16.4.5",
"icon-sdk-js": "^1.5.2"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"eslint": "^9.7.0",
"globals": "^15.8.0",
"prettier": "^3.3.3"
}
}