zotero/package.json
Dan Stillman d9cee322cd Tag selector performance overhaul
- Use react-virtualized to render tags on demand, reducing the number
  of DOM elements from potentially tens of thousands to <100. This
  requires tags to be absolutely positioned, so sizing and
  positioning need to be precomputed rather than relying on CSS.
- Avoid unnecessary refreshes, speed up tag retrieval, and optimize
  sorting
- Debounce reflowing when resizing tag selector

Also:

- Scroll to top when changing collections
- Allow tags to take up full width of tag selector without truncation

Closes #1649
Closes #281
2019-03-28 06:28:34 -04:00

51 lines
1.5 KiB
JSON

{
"name": "zotero",
"private": "private",
"version": "5.0.0",
"description": "Zotero",
"main": "",
"scripts": {
"start": "node ./scripts/build.js && node ./scripts/watch.js",
"build": "node ./scripts/build.js",
"sass": "node ./scripts/sass.js",
"js": "node ./scripts/js.js",
"clean": "node ./scripts/clean.js",
"clean-build": "node ./scripts/clean.js && node ./scripts/build.js",
"clean-start": "node ./scripts/clean.js && node ./scripts/build.js && node ./scripts/watch.js"
},
"license": "",
"dependencies": {
"bluebird": "^3.5.1",
"classnames": "^2.2.6",
"prop-types": "^15.6.2",
"react": "^16.8.4",
"react-dom": "^16.6.3",
"react-intl": "^2.7.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chokidar": "^2.1.2",
"co-mocha": "^1.2.1",
"colors": "^1.1.2",
"eslint": "^5.14.1",
"eslint-plugin-react": "^7.12.4",
"fs-extra": "^3.0.1",
"globby": "^6.1.0",
"jspath": "^0.4.0",
"mocha": "^3.5.3",
"multimatch": "^2.1.0",
"node-sass": "^4.11.0",
"react-virtualized": "^9.21.0",
"sinon": "^4.5.0",
"universalify": "^0.1.1"
}
}