forked from solendprotocol/solend-sdk
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "@solendprotocol/solend-sdk",
"version": "0.5.1",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"docs": "typedoc",
"prepublish": "yarn build",
"build": "rm -rf dist/; tsc",
"test": "jest",
"coverage": "jest --coverage",
"lint": "prettier --write .; prettier --check .;eslint ."
},
"dependencies": {
"@pythnetwork/client": "^2.5.1",
"@solana/buffer-layout": "^3.0.0",
"@solana/spl-token": "^0.1.8",
"@solana/web3.js": "^1.31.0",
"axios": "^0.24.0",
"bignumber.js": "^9.0.2",
"bn.js": "^5.2.0",
"buffer": "^6.0.3",
"buffer-layout": "^1.2.0",
"isomorphic-fetch": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"eslint": "^8.4.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"jest": "^27.4.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.5.1",
"ts-jest": "^27.1.1",
"typedoc": "^0.22.10",
"typescript": "^4.5.2",
"typescript-eslint": "^0.0.1-alpha.0"
},
"jest": {
"automock": false,
"resetMocks": false,
"setupFiles": [
"./setupJest.js"
]
}
}