-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "quarry-cli",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"cli": "ts-node ./src/index.ts",
"_test": "jest --detectOpenHandles --runInBand",
"test": "pnpm compile && ts-node ./src/testHelpers/runner.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc --project tsconfig.build.json",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@gokiprotocol/client": "^0.11.1",
"@marinade.finance/kedgeree-sdk": "^1.0.3",
"@marinade.finance/solana-cli-utils": "^0.0.85",
"@project-serum/anchor": "~0.26",
"@quarryprotocol/quarry-sdk": "^5.2.0",
"@saberhq/anchor-contrib": "^1.14.4",
"@saberhq/solana-contrib": "^1.14.4",
"@saberhq/token-utils": "^1.14.4",
"@solana/spl-governance": "^0.3.27",
"@solana/web3.js": "^1.77.3",
"bn.js": "^5.2.1",
"commander": "^9.4.0",
"jsbi": "^4.3.0"
},
"devDependencies": {
"@marinade.finance/solana-test-utils": "^0.0.89",
"@types/bn.js": "^5.1.0",
"@types/jest": "^28.1.8",
"@types/mz": "^2.7.4",
"@types/node": "^18.7.14",
"@types/node-fetch": "^2.6.2",
"gts": "^3.1.0",
"jest": "^28.1.3",
"jest-shell-matchers": "^1.0.2",
"mz": "^2.7.0",
"tmp-promise": "^3.0.3",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "4.7.4"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"react-native"
],
"allowedVersions": {
"jest": "28"
}
},
"packageExtensions": {
"@gokiprotocol/client": {
"dependencies": {
"@solana/buffer-layout": "^3.0.0"
}
},
"@saberhq/token-utils": {
"patchedDependencies": {
"@solana/[email protected]": "patches/@[email protected]"
}
},
"@solana/[email protected]": {
"dependencies": {
"@solana/buffer-layout": "^3.0.0"
}
}
},
"patchedDependencies": {
"@solana/[email protected]": "patches/@[email protected]"
}
}
}