package.json 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. {
  2. "name": "react-virtuoso",
  3. "author": "Petyo Ivanov",
  4. "sideEffects": false,
  5. "version": "2.19.1",
  6. "homepage": "https://virtuoso.dev/",
  7. "license": "MIT",
  8. "source": "src/index.tsx",
  9. "main": "dist/index.js",
  10. "module": "dist/index.m.js",
  11. "types": "dist/index.d.ts",
  12. "keywords": [
  13. "react",
  14. "reactjs",
  15. "virtual",
  16. "endless",
  17. "load more",
  18. "list",
  19. "scrolling",
  20. "infinite",
  21. "virtualized",
  22. "grid",
  23. "feed",
  24. "chat"
  25. ],
  26. "files": [
  27. "dist"
  28. ],
  29. "scripts": {
  30. "start": "microbundle watch --raw --no-sourcemap --strict --no-compress --jsx React.createElement --format=cjs,esm",
  31. "build": "yarn build:microbundle && yarn build:bundle-dts",
  32. "build:microbundle": "microbundle --strict --jsx React.createElement --format=cjs,esm src/index.tsx",
  33. "build:bundle-dts": "api-extractor run --local && ./scripts/cleanup-dist.sh",
  34. "test": "jest --passWithNoTests",
  35. "e2e": "playwright test",
  36. "lint": "eslint src test e2e --ext .ts,.tsx",
  37. "typecheck": "tsc --noEmit -p tsconfig.typecheck.json",
  38. "browse-examples": "node examples/generate-examples.mjs && parcel examples/__examples.html",
  39. "prepare": "yarn build && husky install",
  40. "semantic-release": "semantic-release"
  41. },
  42. "dependencies": {
  43. "@virtuoso.dev/react-urx": "^0.2.12",
  44. "@virtuoso.dev/urx": "^0.2.12"
  45. },
  46. "peerDependencies": {
  47. "react": ">=16 || >=17 || >= 18",
  48. "react-dom": ">=16 || >=17 || >= 18"
  49. },
  50. "devDependencies": {
  51. "@commitlint/cli": "^12.1.4",
  52. "@commitlint/config-conventional": "^12.1.4",
  53. "@emotion/core": "^10.1.0",
  54. "@emotion/styled": "^10.0.27",
  55. "@microsoft/api-extractor": "^7.25.0",
  56. "@playwright/test": "^1.22.2",
  57. "@testing-library/react": "^13.4.0",
  58. "@types/faker": "^5.1.4",
  59. "@types/jest": "^26.0.20",
  60. "@types/jsdom": "^16.2.3",
  61. "@types/lodash": "^4.14.165",
  62. "@types/parcel-bundler": "^1.12.1",
  63. "@types/react": "^18.0.5",
  64. "@types/react-beautiful-dnd": "^13.0.0",
  65. "@types/react-dom": "^18.0.1",
  66. "@types/react-router-dom": "^5.1.7",
  67. "@types/react-table": "^7.7.10",
  68. "@types/react-test-renderer": "^16.9.3",
  69. "@typescript-eslint/eslint-plugin": "^5.28.0",
  70. "@typescript-eslint/parser": "^5.28.0",
  71. "babel-eslint": "^10.0.0",
  72. "eslint": "^7.5.0",
  73. "eslint-config-prettier": "^7.2.0",
  74. "eslint-config-react-app": "^6.0.0",
  75. "eslint-plugin-flowtype": "^5.2.0",
  76. "eslint-plugin-html": "^6.0.2",
  77. "eslint-plugin-import": "^2.22.0",
  78. "eslint-plugin-json": "^2.1.1",
  79. "eslint-plugin-jsx-a11y": "^6.3.1",
  80. "eslint-plugin-prettier": "^3.3.1",
  81. "eslint-plugin-react": "^7.20.3",
  82. "eslint-plugin-react-hooks": "^4.0.8",
  83. "faker": "^5.1.0",
  84. "husky": "^6.0.0",
  85. "jest": "^26.6.3",
  86. "jsdom": "^16.4.0",
  87. "lodash": "^4.17.21",
  88. "microbundle": "^0.13.0",
  89. "parcel": "^1.12.4",
  90. "parcel-bundler": "^1.12.4",
  91. "playwright": "^1.22.2",
  92. "playwright-chromium": "^1.22.2",
  93. "prettier": "^2.2.1",
  94. "react": "^18.0.0",
  95. "react-beautiful-dnd": "^13.0.0",
  96. "react-dom": "^18.0.0",
  97. "react-router-dom": "^5.2.0",
  98. "react-table": "^7.7.0",
  99. "react-test-renderer": "^16.13.1",
  100. "rollup-plugin-dts": "^4.2.0",
  101. "semantic-release": "^17.3.0",
  102. "ts-jest": "^26.5.1",
  103. "tslib": "^2.0.0",
  104. "typescript": "^4.4.2"
  105. },
  106. "resolutions": {
  107. "@types/react": "^16.14.2"
  108. },
  109. "engines": {
  110. "node": ">=10"
  111. },
  112. "prettier": {
  113. "printWidth": 140,
  114. "semi": false,
  115. "singleQuote": true,
  116. "trailingComma": "es5"
  117. },
  118. "repository": {
  119. "type": "git",
  120. "url": "https://github.com/petyosi/react-virtuoso.git"
  121. }
  122. }