-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathpackage.json
56 lines (56 loc) · 1.6 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
{
"directories": {
"test": "tests"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@coral-xyz/anchor": "0.29.0",
"@coral-xyz/anchor-30": "npm:@coral-xyz/[email protected]",
"@project-serum/common": "0.0.1-beta.3",
"@project-serum/serum": "0.13.65",
"@pythnetwork/client": "2.21.0",
"@solana/spl-token": "0.3.7",
"@solana/web3.js": "1.73.2",
"@types/bn.js": "5.1.6",
"@types/chai": "5.0.0",
"@types/mocha": "8.2.3",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"chai": "4.4.1",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "7.0.4",
"prettier": "3.0.1",
"typedoc": "0.23.23",
"typescript": "4.9.5",
"@pythnetwork/price-service-client": "1.9.0"
},
"dependencies": {
"@ellipsis-labs/phoenix-sdk": "1.4.2",
"@pythnetwork/pyth-solana-receiver": "0.8.0",
"@switchboard-xyz/on-demand": "1.2.10",
"anchor-bankrun": "0.3.0",
"chai-bn": "0.2.2",
"csvtojson": "2.0.10",
"dotenv": "16.4.5",
"json2csv": "5.0.7",
"nanoid": "3.3.4",
"rpc-websockets": "7.5.1",
"solana-bankrun": "0.3.0",
"zstddec": "0.1.0"
},
"scripts": {
"generate-docs": "typedoc --skipErrorChecking --logLevel Error",
"prepare": "husky install",
"prettify": "prettier --check './sdk/src/**/*.ts' './tests/**.ts' './cli/**.ts'",
"prettify:fix": "prettier --write './sdk/src/**/*.ts' './tests/**.ts' './cli/**.ts'",
"lint": "eslint . --ext ts --quiet",
"lint:fix": "eslint . --ext ts --fix",
"update-idl": "cp target/idl/drift.json sdk/src/idl/drift.json"
},
"engines": {
"node": ">=12"
}
}