-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
66 lines (66 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
{
"name": "@quarryprotocol/rewarder-list",
"private": true,
"version": "1.0.0",
"main": "index.js",
"repository": "git@github.com:quarryprotocol/rewarder-list.git",
"author": "Larry Jarry <larry@quarry.so>",
"license": "AGPL-3.0",
"packageManager": "yarn@4.1.1",
"devDependencies": {
"@rushstack/eslint-patch": "^1.8.0",
"@saberhq/eslint-config": "^3.2.1",
"@saberhq/tsconfig": "^3.2.1",
"@types/bn.js": "^5.1.5",
"@types/eslint": "^8.56.6",
"@types/lodash": "^4.17.0",
"@types/node": "^18.19.26",
"@types/prettier": "^3.0.0",
"eslint": "^8.57.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"dependencies": {
"@coral-xyz/anchor": "^0.29.0",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.2",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.2",
"@metaplex-foundation/umi-web3js-adapters": "^0.9.2",
"@project-serum/anchor": "^0.23.0",
"@quarryprotocol/quarry-sdk": "^5.3.0",
"@saberhq/anchor-contrib": "^2.0.0",
"@saberhq/solana-contrib": "^2.0.0",
"@saberhq/token-utils": "^2.0.0",
"@solana/web3.js": "^1.91.1",
"axios": "^1.6.8",
"bn.js": "^5.2.1",
"fast-json-stable-stringify": "^2.1.0",
"jsbi": "^4.3.0",
"lodash": "^4.17.21",
"tiny-invariant": "^1.3.3",
"toml": "^3.0.0",
"tslib": "^2.6.2"
},
"scripts": {
"build": "tsc",
"lint": "eslint . --cache",
"compile-rewarders-list": "node compileRewardersList.mjs",
"build-token-list": "node dist/scripts/buildTokenList.js",
"build-tvl-list": "node dist/scripts/buildTVLList.js",
"fetch-all-rewarders": "node dist/scripts/fetchAllRewarders.js",
"decorate-rewarders": "node dist/scripts/decorateRewarders.js",
"prepare": "husky install"
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{md,json,js,yml,yaml,html}": "prettier --write"
},
"engines": {
"node": ">=18"
}
}