mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 17:11:49 +00:00
We removed Chromatic in https://github.com/sourcegraph/sourcegraph/pull/62228, but there were still some remnants. ## Test plan CI
25 lines
721 B
JSON
25 lines
721 B
JSON
{
|
|
"private": true,
|
|
"name": "@sourcegraph/storybook",
|
|
"version": "0.0.1",
|
|
"description": "Sourcegraph Storybook configuration",
|
|
"sideEffects": false,
|
|
"license": "Apache-2.0",
|
|
"main": "./src/index.ts",
|
|
"scripts": {
|
|
"lint:js": "eslint --cache 'src/**/*.[jt]s?(x)'",
|
|
"start": "TS_NODE_TRANSPILE_ONLY=true sb dev -p 9001 -c ./src",
|
|
"build": "TS_NODE_TRANSPILE_ONLY=true sb build -c ./src",
|
|
"test": "echo no tests"
|
|
},
|
|
"dependencies": {
|
|
"@sourcegraph/wildcard": "workspace:*",
|
|
"@sourcegraph/common": "workspace:*",
|
|
"@sourcegraph/http-client": "workspace:*",
|
|
"@sourcegraph/shared": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/build-config": "workspace:*"
|
|
}
|
|
}
|