mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:51:50 +00:00
Fixes the issue caused by the presence of the `sourcegraph: ''` entry in the `pnpm-lock.yaml`. If we install any new dependency, the `pnpm install` command fails on CI. [Failure example](https://github.com/sourcegraph/sourcegraph/actions/runs/4121774771/jobs/7117792725).
31 lines
1015 B
JSON
31 lines
1015 B
JSON
{
|
|
"private": true,
|
|
"name": "@sourcegraph/shared",
|
|
"version": "1.0.0",
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"storybook": "STORIES_GLOB='client/shared/src/**/*.story.tsx' pnpm --filter @sourcegraph/storybook run start",
|
|
"lint:js": "eslint --cache '**/*.[jt]s?(x)'",
|
|
"lint:css": "stylelint 'src/**/*.scss' --quiet",
|
|
"test": "jest",
|
|
"schema": "gulp schema",
|
|
"graphql-operations": "gulp graphQlOperations",
|
|
"watch-schema": "gulp watchSchema"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/testing": "workspace:*",
|
|
"@sourcegraph/build-config": "workspace:*",
|
|
"@sourcegraph/extension-api-types": "workspace:*",
|
|
"sourcegraph": "workspace:*"
|
|
},
|
|
"dependencies": {
|
|
"@sourcegraph/wildcard": "workspace:*",
|
|
"@sourcegraph/http-client": "workspace:*",
|
|
"@sourcegraph/common": "workspace:*",
|
|
"@sourcegraph/client-api": "workspace:*",
|
|
"@sourcegraph/template-parser": "workspace:*",
|
|
"@sourcegraph/codeintellify": "workspace:*"
|
|
},
|
|
"sideEffects": true
|
|
}
|