This repository has been archived by the owner on Jun 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.29 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@stepfinance/solana-market-aggregator",
"version": "1.17.7",
"description": "Aggregates token prices using CoinGecko and Serum Markets",
"license": "MIT",
"author": "Step <[email protected]>",
"homepage": "https://step.finance/",
"repository": {
"type": "git",
"url": "https://github.com/step-finance/solana-market-aggregator"
},
"bugs": {
"url": "https://github.com/step-finance/solana-market-aggregator/issues"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "mocha -r dotenv-defaults/config",
"lint": "eslint src/ tests/ --ext .js,.jsx,.ts,.tsx",
"lint-fix": "npm run lint -- --fix",
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist build",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"step",
"solana",
"serum",
"coingecko"
],
"prettier": "@stepfinance/prettier-config",
"devDependencies": {
"@stepfinance/prettier-config": "^1.0.0",
"@types/bn.js": "^5.1.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"dotenv-defaults": "^5.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"mocha": "^10.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@project-serum/anchor": "^0.24.2",
"@project-serum/serum": "^0.13.65",
"@saberhq/solana-contrib": "^1.13.15",
"@saberhq/token-utils": "^1.13.15",
"@solana/spl-token": "^0.1.8",
"@solana/spl-token-registry": "^0.2.3739",
"@solana/web3.js": "^1.43.5",
"@stepfinance/step-swap": "^1.1.1",
"@switchboard-xyz/sbv2-lite": "^0.1.4",
"axios": "^0.27.2",
"bn.js": "^5.2.0",
"jsbi": "^4.3.0"
}
}