sourcegraph/client/wildcard/package.json
David Veszelovszki 2b228b057d
Remove Wildcard's dependency on @sourcegraph/common (#61781)
* Remove dependencies
* Update lockfile
* Remove TypeScript reference
* Add missing dependencies to NPM libraries that worked by coincidence
* A few unrelated warning fixes
2024-04-15 12:26:02 +02:00

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"
}
}