mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 19:21:50 +00:00
* Remove dependencies * Update lockfile * Remove TypeScript reference * Add missing dependencies to NPM libraries that worked by coincidence * A few unrelated warning fixes
26 lines
726 B
JSON
26 lines
726 B
JSON
{
|
|
"private": true,
|
|
"name": "@sourcegraph/wildcard",
|
|
"version": "0.0.1",
|
|
"description": "Sourcegraph Wildcard component library",
|
|
"main": "./src/index.ts",
|
|
"sideEffects": false,
|
|
"license": "Apache-2.0",
|
|
"scripts": {
|
|
"storybook": "STORIES_GLOB='client/wildcard/src/**/*.story.tsx' pnpm --filter @sourcegraph/storybook run start",
|
|
"lint:js": "eslint --cache '**/*.[jt]s?(x)'",
|
|
"lint:css": "stylelint 'src/**/*.scss' --quiet",
|
|
"test": "vitest"
|
|
},
|
|
"devDependencies": {
|
|
"@sourcegraph/testing": "workspace:*",
|
|
"@types/highlight.js": "^9.12.4"
|
|
},
|
|
"dependencies": {
|
|
"dompurify": "^3.0.6",
|
|
"highlight.js": "^10.5.0",
|
|
"marked": "4.0.16",
|
|
"react-router-dom": "^6.8.1"
|
|
}
|
|
}
|