sourcegraph/client/shared/package.json
Valery Bugakov ce38bbc724
web: fix pnpm-lock issue (#47478)
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).
2023-02-09 22:04:31 -08:00

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
}