forked from QuarryProtocol/rewarder-list
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.78 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@quarryprotocol/rewarder-list",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:quarryprotocol/rewarder-list.git",
"author": "Larry Jarry <[email protected]>",
"license": "AGPL-3.0",
"packageManager": "[email protected]",
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.1",
"@saberhq/eslint-config": "^1.12.55",
"@types/bn.js": "^5.1.0",
"@types/eslint": "^8.4.1",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.22",
"@types/prettier": "^2.4.4",
"eslint": "^8.11.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"prettier": "^2.6.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"dependencies": {
"@project-serum/anchor": "^0.23.0",
"@quarryprotocol/quarry-sdk": "^3.0.0",
"@saberhq/anchor-contrib": "^1.12.55",
"@saberhq/solana-contrib": "^1.12.55",
"@saberhq/token-utils": "^1.12.55",
"@solana/web3.js": "^1.36.0",
"axios": "^0.26.1",
"bn.js": "^5.2.0",
"fast-json-stable-stringify": "^2.1.0",
"jsbi": "^4.2.0",
"lodash": "^4.17.21",
"tiny-invariant": "^1.2.0",
"toml": "^3.0.0"
},
"scripts": {
"typecheck": "tsc",
"lint": "eslint . --cache",
"compile-rewarders-list": "ts-node src/scripts/compileRewardersList.ts",
"build-token-list": "ts-node src/scripts/buildTokenList.ts",
"build-tvl-list": "ts-node src/scripts/buildTVLList.ts",
"fetch-all-rewarders": "ts-node src/scripts/fetchAllRewarders.ts",
"decorate-rewarders": "ts-node src/scripts/decorateRewarders.ts",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml,html}": "prettier --write"
}
}