-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.5 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
{
"name": "usermap-server",
"version": "1.0.0",
"main": "lib/publisher.js",
"author": "nouralharithi",
"license": "MIT",
"private": false,
"scripts": {
"build": "yarn clean && tsc",
"clean": "rm -rf lib",
"prettify": "prettier --check './src/**/*.ts'",
"prettify:fix": "prettier --write './src/**/*.ts'",
"lint": "eslint . --ext ts --quiet",
"lint:fix": "eslint . --ext ts --fix",
"publisher": "ts-node src/publisher.ts",
"pruner": "ts-node src/pruner.ts"
},
"devDependencies": {
"@types/k6": "^0.45.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^7.0.4",
"k6": "^0.0.0",
"prettier": "^3.2.2",
"ts-node": "^10.9.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@drift-labs/sdk": "file:./drift-common/protocol/sdk",
"@drift/common": "file:./drift-common/common-ts",
"@opentelemetry/api": "^1.1.0",
"@opentelemetry/auto-instrumentations-node": "^0.31.1",
"@opentelemetry/exporter-prometheus": "^0.31.0",
"@opentelemetry/sdk-node": "^0.31.0",
"@types/lodash": "^4.14.202",
"commander": "^11.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"response-time": "^2.3.2",
"undici": "^6.19.5",
"winston": "^3.11.0",
"zstddec": "^0.1.0"
}
}