mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:51:57 +00:00
* reapply "switch from jest to vitest for faster, simpler tests (https://github.com/sourcegraph/sourcegraph/pull/57886)" This was reverted in https://github.com/sourcegraph/sourcegraph/pull/58116 due to an issue with the browser tests. * include fetch-mock * fix flakiness * rm mock that did not work in experimentalVmThreads * fix * timeout * fixup --------- Co-authored-by: William Bezuidenhout <william.bezuidenhout@sourcegraph.com>
19 lines
582 B
JSON
19 lines
582 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": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/build-config": "workspace:*"
|
|
}
|
|
}
|