Added phoenix and serum subscribers
This commit is contained in:
101
package.json
101
package.json
@@ -1,52 +1,53 @@
|
||||
{
|
||||
"name": "@drift-labs/dlob-server",
|
||||
"version": "0.1.0",
|
||||
"author": "wphan",
|
||||
"main": "lib/index.js",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@drift-labs/sdk": "2.30.0",
|
||||
"@opentelemetry/api": "^1.1.0",
|
||||
"@opentelemetry/auto-instrumentations-node": "^0.31.1",
|
||||
"@opentelemetry/exporter-prometheus": "^0.31.0",
|
||||
"@opentelemetry/sdk-node": "^0.31.0",
|
||||
"@project-serum/anchor": "^0.19.1-beta.1",
|
||||
"@project-serum/serum": "^0.13.65",
|
||||
"@solana/web3.js": "^1.22.0",
|
||||
"async-mutex": "^0.4.0",
|
||||
"commander": "^9.4.0",
|
||||
"compression": "^1.7.4",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^10.0.0",
|
||||
"express": "^4.18.2",
|
||||
"express-rate-limit": "^6.7.0",
|
||||
"morgan": "^1.10.0",
|
||||
"response-time": "^2.3.2",
|
||||
"typescript": "4.5.4",
|
||||
"winston": "^3.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
||||
"@typescript-eslint/parser": "^4.28.0",
|
||||
"eslint": "^7.29.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"husky": "^7.0.4",
|
||||
"prettier": "^2.4.1",
|
||||
"ts-node": "^10.9.1"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "husky install",
|
||||
"build": "yarn clean && tsc",
|
||||
"clean": "rm -rf lib",
|
||||
"start": "node lib/index.js",
|
||||
"dev": "ts-node src/index.ts",
|
||||
"dev:inspect": "yarn build && node --inspect ./lib/index.js",
|
||||
"example": "ts-node example/client.ts",
|
||||
"exampleWithSlot": "ts-node example/clientWithSlot.ts",
|
||||
"prettify": "prettier --check './src/**/*.ts'",
|
||||
"prettify:fix": "prettier --write './src/**/*.ts'",
|
||||
"lint": "eslint . --ext ts --quiet",
|
||||
"lint:fix": "eslint . --ext ts --fix"
|
||||
}
|
||||
"name": "@drift-labs/dlob-server",
|
||||
"version": "0.1.0",
|
||||
"author": "wphan",
|
||||
"main": "lib/index.js",
|
||||
"license": "Apache-2.0",
|
||||
"dependencies": {
|
||||
"@drift-labs/sdk": "2.30.0",
|
||||
"@opentelemetry/api": "^1.1.0",
|
||||
"@opentelemetry/auto-instrumentations-node": "^0.31.1",
|
||||
"@opentelemetry/exporter-prometheus": "^0.31.0",
|
||||
"@opentelemetry/sdk-node": "^0.31.0",
|
||||
"@project-serum/anchor": "^0.19.1-beta.1",
|
||||
"@project-serum/serum": "^0.13.65",
|
||||
"@solana/web3.js": "^1.22.0",
|
||||
"async-mutex": "^0.4.0",
|
||||
"commander": "^9.4.0",
|
||||
"compression": "^1.7.4",
|
||||
"cors": "^2.8.5",
|
||||
"dotenv": "^10.0.0",
|
||||
"express": "^4.18.2",
|
||||
"express-rate-limit": "^6.7.0",
|
||||
"morgan": "^1.10.0",
|
||||
"response-time": "^2.3.2",
|
||||
"typescript": "4.5.4",
|
||||
"winston": "^3.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@typescript-eslint/eslint-plugin": "^4.28.0",
|
||||
"@typescript-eslint/parser": "^4.28.0",
|
||||
"eslint": "^7.29.0",
|
||||
"eslint-config-prettier": "^8.3.0",
|
||||
"eslint-plugin-prettier": "^3.4.0",
|
||||
"husky": "^7.0.4",
|
||||
"prettier": "^2.4.1",
|
||||
"ts-node": "^10.9.1"
|
||||
},
|
||||
"scripts": {
|
||||
"prepare": "husky install",
|
||||
"build": "yarn clean && tsc",
|
||||
"clean": "rm -rf lib",
|
||||
"start": "node lib/index.js",
|
||||
"dev": "ts-node src/index.ts",
|
||||
"dev:inspect": "yarn build && node --inspect ./lib/index.js",
|
||||
"dev:debug": "yarn build && node --inspect-brk --inspect=2230 ./lib/index.js",
|
||||
"example": "ts-node example/client.ts",
|
||||
"exampleWithSlot": "ts-node example/clientWithSlot.ts",
|
||||
"prettify": "prettier --check './src/**/*.ts'",
|
||||
"prettify:fix": "prettier --write './src/**/*.ts'",
|
||||
"lint": "eslint . --ext ts --quiet",
|
||||
"lint:fix": "eslint . --ext ts --fix"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user