-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 4 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "aws-advanced-nodejs-wrapper",
"version": "1.0.0",
"type": "module",
"workspaces": [
"common",
"pg",
"mysql"
],
"scripts": {
"check": "prettier . --check --config .prettierrc",
"bench-plugin-manager": "npx tsx tests/plugin_manager_benchmarks.ts",
"bench-plugins": "npx tsx tests/plugin_benchmarks.ts",
"bench-plugin-manager-otel": "npx tsx tests/plugin_manager_telemetry_benchmarks.ts",
"bench-plugins-otel": "npx tsx tests/plugin_telemetry_benchmarks.ts",
"format": "prettier . --write --config .prettierrc",
"integration": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --config=jest.integration.config.json --runInBand --verbose",
"debug-integration": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules --inspect-brk=0.0.0.0:5005\" npx jest --config=jest.integration.config.json --runInBand",
"lint": "eslint --fix --ext .ts .",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --config=jest.unit.config.json",
"fix-imports": "babel --extensions \".js\" dist -d dist",
"build": "tsc",
"clean": "rimraf --preserve-root dist",
"copy-files": "copyfiles common/lib/utils/locales/*.json dist/",
"prepublish": "npm run clean && npm run build && npm run fix-imports && npm run copy-files && npm pack --pack-destination ./build"
},
"lint-staged": {
"*.ts": [
"eslint --cache --fix",
"prettier --config .prettierrc"
]
},
"files": [
"dist"
],
"devDependencies": {
"@aws-sdk/client-rds": "^3.682.0",
"@aws-sdk/client-secrets-manager": "^3.682.0",
"@aws-sdk/client-sts": "^3.682.0",
"@aws-sdk/client-xray": "^3.682.0",
"@aws-sdk/credential-providers": "^3.685.0",
"@aws-sdk/rds-signer": "^3.685.0",
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/node": "^7.26.0",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/api-metrics": "^0.33.0",
"@opentelemetry/context-async-hooks": "^1.26.0",
"@opentelemetry/exporter-metrics-otlp-grpc": "^0.53.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.53.0",
"@opentelemetry/id-generator-aws-xray": "^1.2.2",
"@opentelemetry/instrumentation-aws-sdk": "^0.44.0",
"@opentelemetry/instrumentation-http": "^0.53.0",
"@opentelemetry/propagator-aws-xray": "^1.26.0",
"@opentelemetry/resources": "^1.26.0",
"@opentelemetry/sdk-metrics": "^1.26.0",
"@opentelemetry/sdk-node": "^0.53.0",
"@opentelemetry/sdk-trace-base": "^1.26.0",
"@opentelemetry/semantic-conventions": "^1.27.0",
"@types/i18n": "^0.13.12",
"@types/jest": "^29.5.13",
"@types/node": "^20.14.10",
"@types/node-fetch": "^2.6.11",
"@types/pg": "^8.11.10",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"aws-xray-sdk": "^3.10.1",
"axios": "^1.7.7",
"axios-cookiejar-support": "^5.0.3",
"babel-plugin-transform-rewrite-imports": "^1.5.3",
"benny": "^3.7.1",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"entities": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-prettier": "^5.2.1",
"generate-license-file": "^3.5.1",
"http-cookie-agent": "^6.0.5",
"jest-html-reporter": "^3.10.2",
"lint-staged": "^15.2.10",
"mysql2": "^3.11.0",
"node-fetch": "^2.7.0",
"pg": "^8.13.1",
"prettier": "^3.3.3",
"querystring": "^0.2.1",
"rimraf": "^6.0.1",
"toxiproxy-node-client": "^3.0.0",
"ts-jest": "^29.2.5",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "^5.6.2",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
},
"dependencies": {
"@types/i18n": "^0.13.12",
"async-mutex": "^0.5.0",
"dotenv": "^16.4.5",
"i18n": "^0.15.1",
"winston": "3.15.0"
},
"overrides": {
"braces": "^3.0.3",
"fast-xml-parser": "^4.4.1",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.3/xlsx-0.20.3.tgz"
}
}