forked from flare-foundation/reward-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (51 loc) · 1.58 KB
/
package.json
File metadata and controls
52 lines (51 loc) · 1.58 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
48
49
50
51
52
{
"name": "calculating-staking-rewards",
"version": "1.0.0",
"description": "Script for calculating staking rewards",
"main": "index.js",
"scripts": {
"process-staking-rewards": "yarn ts-node src/processStakingRewards.ts",
"sum-staking-rewards": "yarn ts-node src/sumStakingRewards.ts",
"build": "npm-run-all yarn tsc",
"--- development scripts ---": "",
"sync": "ts-node ./src/scripts/sync-artifacts.ts",
"typechain-web3-v1": "yarn typechain --target=web3-v1 --out-dir typechain-web3-v1 \"artifacts/!(build-info)/**/+([a-zA-Z0-9_]).json\" 1> nul",
"artifacts": "npm-run-all sync typechain-web3-v1"
},
"dependencies": {
"command-exists": "^1.2.9",
"dotenv": "^8.2.0",
"glob": "^8.0.3",
"tsoa": "^3.5.2",
"typescript-ioc": "^3.2.2",
"web3": "^1",
"web3-utils": "^1.7.3",
"winston": "^3.3.3",
"bech32": "^2.0.0",
"fast-sha256": "^1.3.0",
"avalanche": "^3.15.4",
"lodash": "^4.17.21",
"json2csv": "^6.0.0-alpha.2",
"axios": "^1.4.0",
"csv-parse": "^4.15.3",
"@flarenetwork/flarejs": "^1.2.1"
},
"devDependencies": {
"@typechain/web3-v1": "3.1.0",
"@types/node": "^16.11.15",
"rimraf": "^3.0.2",
"ts-node": "3.3.0",
"typechain": "5.1.2",
"typescript": "^4.1.5",
"npm-run-all": "^4.1.5",
"@types/mocha": "^10.0.0",
"@types/chai": "4.3.3",
"mocha": "^10.0.0",
"chai": "^4.3.6",
"@types/lodash": "^4.14.186"
},
"engines": {
"node": "^20"
},
"engineStrict": true
}