-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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": "@orca-so/taipei-hh-2023",
"version": "0.1.0",
"main": "dist/main.js",
"license": "MIT",
"type": "module",
"dependencies": {
"@coral-xyz/anchor": "~0.27.0",
"@marinade.finance/marinade-ts-sdk": "^4.0.6",
"@orca-so/common-sdk": "^0.2.2",
"@orca-so/token-sdk": "^0.1.5",
"@orca-so/whirlpools-sdk": "^0.10.0-beta.3",
"@solana/web3.js": "^1.73.0",
"decimal.js": "^10.3.1",
"dotenv": "^16.0.3",
"node-fetch": "^3.3.1",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.3",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"prettier": "^2.8.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"format": "prettier -w .",
"lint": "eslint ./src"
}
}