-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 KB
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
{
"name": "@sentry-internal/node-core-integration-tests",
"version": "10.34.0",
"license": "MIT",
"engines": {
"node": ">=18"
},
"private": true,
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/types/src/index.d.ts",
"scripts": {
"build": "run-s build:transpile build:types",
"build:dev": "yarn build",
"build:transpile": "rollup -c rollup.npm.config.mjs",
"build:types": "tsc -p tsconfig.types.json",
"clean": "rimraf -g **/node_modules && run-p clean:script",
"clean:script": "node scripts/clean.js",
"lint": "eslint . --format stylish",
"fix": "eslint . --format stylish --fix",
"type-check": "tsc",
"test": "vitest run",
"test:watch": "yarn test --watch"
},
"dependencies": {
"@nestjs/common": "^11",
"@nestjs/core": "^11",
"@nestjs/platform-express": "^11",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/context-async-hooks": "^2.2.0",
"@opentelemetry/core": "^2.2.0",
"@opentelemetry/instrumentation": "^0.208.0",
"@opentelemetry/instrumentation-http": "0.208.0",
"@opentelemetry/resources": "^2.2.0",
"@opentelemetry/sdk-trace-base": "^2.2.0",
"@opentelemetry/semantic-conventions": "^1.37.0",
"@sentry/core": "10.34.0",
"@sentry/node-core": "10.34.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"cron": "^3.1.6",
"express": "^4.21.1",
"http-terminator": "^3.2.0",
"nock": "^13.5.5",
"node-cron": "^3.0.3",
"node-schedule": "^2.1.1",
"proxy": "^2.1.1",
"reflect-metadata": "0.2.1",
"rxjs": "^7.8.1",
"winston": "^3.17.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/node-cron": "^3.0.11",
"@types/node-schedule": "^2.1.7",
"eslint-plugin-regexp": "^1.15.0",
"globby": "11"
},
"config": {
"mongodbMemoryServer": {
"preferGlobalPath": true,
"runtimeDownload": false
}
},
"volta": {
"extends": "../../package.json"
}
}