-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "hubble",
"version": "1.0.0",
"main": "lib/index.js",
"license": "MIT",
"dependencies": {
"@hubbleprotocol/hubble-sdk": "^1.0.23",
"@project-serum/anchor": "^0.22.1",
"@pythnetwork/client": "^2.6.0",
"@solana/spl-token": "^0.2.0",
"@solana/web3.js": "^1.36.0",
"axios": "^0.26.0",
"bs58": "^5.0.0",
"decimal.js": "^10.3.1",
"dotenv": "^10.0.0",
"polling-account-fetcher": "^1.0.6",
"tpu-client": "^1.0.2"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^3.4.1",
"prettier": "^2.5.1",
"ts-node": "^10.6.0",
"typescript": "^4.6.2"
},
"scripts": {
"build": "ts-node build/index.ts",
"start": "node lib/index.js",
"prettify": "prettier --check ./src/**/*.ts",
"prettify:fix": "prettier --write ./src/**/*.ts",
"lint": "eslint . --ext ts --quiet",
"lint:fix": "eslint . --ext ts --fix"
}
}