sourcegraph/client/observability-server/package.json
Valery Bugakov 304acdb5da
web: migrate from yarn to pnpm (#46143)
Bazel's rules_js rely on the pnpm package manager. To simplify the integration, we're migrating to pnpm from our current package manager — yarn. Another reason to migrate is that pnpm is cool and fast. 😉
2023-01-11 19:50:09 -08:00

19 lines
580 B
JSON

{
"private": true,
"name": "@sourcegraph/observability-server",
"version": "0.0.1",
"description": "Sourcegraph server observability tools",
"main": "./src/index.ts",
"sideEffects": false,
"license": "Apache-2.0",
"scripts": {
"bundlesize:web:upload": "NODE_ENV=production ts-node-transpile-only ./src/webBundleSize",
"honeycomb:clone-boards": "ts-node-transpile-only ./src/honeycomb/clone-boards.ts",
"lint:js": "eslint --cache 'src/**/*.[jt]s?(x)'",
"test": "jest"
},
"devDependencies": {
"@sourcegraph/build-config": "workspace:*"
}
}