-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.41 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
{
"name": "events-publisher",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"prettier": "^3.2.5",
"typescript": "*"
},
"scripts": {
"start": "ts-node src/index.ts",
"ws-manager": "ts-node src/wsConnectionManager.ts",
"playground": "ts-node src/playground.ts",
"build": "yarn clean && node esbuild.config.js",
"clean": "rm -rf lib",
"prettify": "prettier --check './src/**/*.ts'",
"prettify:fix": "prettier --write './src/**/*.ts'"
},
"dependencies": {
"@aws-sdk/client-ssm": "^3.535.0",
"@aws-sdk/credential-provider-node": "^3.535.0",
"@coral-xyz/anchor": "^0.29.0",
"@drift-labs/sdk": "file:./drift-common/protocol/sdk",
"@drift/common": "file:./drift-common/common-ts",
"@grpc/grpc-js": "^1.8.0",
"@triton-one/yellowstone-grpc": "0.6.0",
"buffer": "^6.0.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"esbuild": "^0.20.1",
"express": "^4.19.1",
"prom-client": "^15.1.0",
"ws": "^8.16.0"
}
}