-
Notifications
You must be signed in to change notification settings - Fork 226
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.63 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.63 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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"directories": {
"test": "tests"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@coral-xyz/anchor": "0.29.0",
"@coral-xyz/anchor-30": "npm:@coral-xyz/anchor@0.30.1",
"@project-serum/common": "0.0.1-beta.3",
"@project-serum/serum": "0.13.65",
"@pythnetwork/client": "2.21.0",
"@pythnetwork/price-service-client": "1.9.0",
"@solana/spl-token": "0.4.13",
"@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": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"chai": "4.4.1",
"eslint": "8.57.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": "5.4.5"
},
"dependencies": {
"@ellipsis-labs/phoenix-sdk": "1.4.2",
"@switchboard-xyz/common": "3.0.14",
"@switchboard-xyz/on-demand": "2.4.1",
"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",
"zod": "4.0.17",
"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 --format unix",
"lint:fix": "eslint . --ext ts --fix",
"update-idl": "anchor build -- --features anchor-test && cp target/idl/drift.json sdk/src/idl/drift.json"
},
"engines": {
"node": ">=12"
},
"resolutions": {
"chalk": "4.1.2",
"debug": "<4.4.2",
"ansi-styles": "4.3.0",
"supports-color": "7.2.0",
"strip-ansi": "6.0.1",
"ansi-regex": "5.0.1",
"wrap-ansi": "7.0.0",
"color-convert": "<3.1.1",
"color-name": "<2.0.1",
"color-string": "<2.1.1",
"simple-swizzle": "<0.2.3",
"is-arrayish": "<0.3.3",
"slice-ansi": "3.0.0",
"error-ex": "<1.3.3",
"backslash": "<0.2.1",
"chalk-template": "<1.1.1",
"supports-hyperlinks": "<4.1.1",
"has-ansi": "<6.0.1"
},
"overrides": {
"chalk": "4.1.2",
"debug": "<4.4.2",
"ansi-styles": "4.3.0",
"supports-color": "7.2.0",
"strip-ansi": "6.0.1",
"ansi-regex": "5.0.1",
"wrap-ansi": "7.0.0",
"color-convert": "<3.1.1",
"color-name": "<2.0.1",
"color-string": "<2.1.1",
"simple-swizzle": "<0.2.3",
"is-arrayish": "<0.3.3",
"slice-ansi": "3.0.0",
"error-ex": "<1.3.3",
"backslash": "<0.2.1",
"chalk-template": "<1.1.1",
"supports-hyperlinks": "<4.1.1",
"has-ansi": "<6.0.1"
}
}