package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "webview-ui",
  3. "version": "0.1.0",
  4. "private": true,
  5. "dependencies": {
  6. "@testing-library/jest-dom": "^5.17.0",
  7. "@testing-library/react": "^13.4.0",
  8. "@testing-library/user-event": "^13.5.0",
  9. "@types/jest": "^27.5.2",
  10. "@types/node": "^16.18.101",
  11. "@types/react": "^18.3.3",
  12. "@types/react-dom": "^18.3.0",
  13. "@vscode/webview-ui-toolkit": "^1.4.0",
  14. "debounce": "^2.1.1",
  15. "fast-deep-equal": "^3.1.3",
  16. "fuse.js": "^7.0.0",
  17. "react": "^18.3.1",
  18. "react-dom": "^18.3.1",
  19. "react-remark": "^2.1.0",
  20. "react-scripts": "5.0.1",
  21. "react-textarea-autosize": "^8.5.3",
  22. "react-use": "^17.5.1",
  23. "react-virtuoso": "^4.7.13",
  24. "rehype-highlight": "^7.0.0",
  25. "rewire": "^7.0.0",
  26. "styled-components": "^6.1.13",
  27. "typescript": "^4.9.5",
  28. "web-vitals": "^2.1.4"
  29. },
  30. "scripts": {
  31. "start": "react-scripts start",
  32. "build": "node ./scripts/build-react-no-split.js",
  33. "test": "react-scripts test",
  34. "eject": "react-scripts eject"
  35. },
  36. "eslintConfig": {
  37. "extends": [
  38. "react-app",
  39. "react-app/jest"
  40. ]
  41. },
  42. "browserslist": {
  43. "production": [
  44. ">0.2%",
  45. "not dead",
  46. "not op_mini all"
  47. ],
  48. "development": [
  49. "last 1 chrome version",
  50. "last 1 firefox version",
  51. "last 1 safari version"
  52. ]
  53. },
  54. "devDependencies": {
  55. "@babel/plugin-proposal-private-property-in-object": "^7.21.11",
  56. "@types/vscode-webview": "^1.57.5"
  57. },
  58. "jest": {
  59. "transformIgnorePatterns": [
  60. "/node_modules/(?!(rehype-highlight|react-remark|unist-util-visit|vfile|unified|bail|is-plain-obj|trough|vfile-message|unist-util-stringify-position|mdast-util-from-markdown|mdast-util-to-string|micromark|decode-named-character-reference|character-entities|markdown-table|zwitch|longest-streak|escape-string-regexp|unist-util-is|hast-util-to-text)/)"
  61. ],
  62. "moduleNameMapper": {
  63. "\\.(css|less|scss|sass)$": "identity-obj-proxy"
  64. }
  65. }
  66. }