mirror of
https://github.com/yu-i-i/overleaf-cep.git
synced 2026-05-23 09:09:36 +02:00
Migrates the Overleaf monorepo package manager from npm (v11) to Yarn 4 (v4.9.1) using node-modules linker mode. GitOrigin-RevId: 50d32ab01955c15e29679eff9e9e9cfb897fab2d
46 lines
1.6 KiB
JSON
46 lines
1.6 KiB
JSON
{
|
|
"name": "@overleaf/metrics",
|
|
"version": "4.2.0",
|
|
"description": "A drop-in metrics and monitoring module for node.js apps",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/overleaf/metrics-module.git"
|
|
},
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"@google-cloud/opentelemetry-cloud-trace-exporter": "^3.0.0",
|
|
"@google-cloud/profiler": "^6.0.4",
|
|
"@opentelemetry/api": "1.9.0",
|
|
"@opentelemetry/auto-instrumentations-node": "^0.72.0",
|
|
"@opentelemetry/exporter-trace-otlp-http": "^0.214.0",
|
|
"@opentelemetry/resources": "^2.6.0",
|
|
"@opentelemetry/sdk-node": "^0.214.0",
|
|
"@opentelemetry/semantic-conventions": "^1.39.0",
|
|
"compression": "^1.7.4",
|
|
"prom-client": "^14.1.1",
|
|
"yn": "^3.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"bunyan": "^1.0.0",
|
|
"chai": "^4.3.6",
|
|
"mocha": "^11.1.0",
|
|
"mocha-junit-reporter": "^2.2.1",
|
|
"mocha-multi-reporters": "^1.5.1",
|
|
"sandboxed-module": "^2.0.4",
|
|
"sinon": "^9.2.4",
|
|
"typescript": "^5.0.4"
|
|
},
|
|
"scripts": {
|
|
"lint": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --ext .cjs,.js,.jsx,.mjs,.ts --max-warnings 0 --format unix .",
|
|
"lint:fix": "eslint --cache --cache-location ../../node_modules/.cache/eslint/ --fix --ext .cjs,.js,.jsx,.mjs,.ts .",
|
|
"test:unit": "mocha --exit test/**/*.{js,cjs}",
|
|
"test:acceptance": "mocha --recursive --exit --grep=${MOCHA_GREP:-} test/acceptance",
|
|
"test": "yarn run lint && yarn run types:check && yarn run test:unit",
|
|
"test:ci": "yarn run test:unit",
|
|
"types:check": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"@overleaf/logger": "workspace:*"
|
|
}
|
|
}
|