-
Notifications
You must be signed in to change notification settings - Fork 112
/
package.json
53 lines (53 loc) · 1.48 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
{
"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.38",
"@pythnetwork/client": "^2.5.1",
"@solana/spl-token": "0.3.7",
"@solana/web3.js": "1.73.2",
"@types/chai": "^5.0.0",
"@types/mocha": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"chai": "^4.3.4",
"eslint": "^7.29.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"
},
"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"
},
"engines": {
"node": ">=12"
}
}