zotero/package.json
Dan Stillman f81763b173 Remove Chai as Promised
A test using `assert.eventually` was failing after the Bluebird removal
but worked with just `await`, and since there hasn't really been much
point to Chai as Promised since the introduction of `async`/`await` ages
ago, just remove the library instead of figuring out why.
2025-07-30 22:31:08 -04:00

65 lines
1.9 KiB
JSON

{
"name": "zotero",
"private": true,
"version": "7.0.0",
"description": "Zotero",
"main": "",
"scripts": {
"start": "node ./js-build/build.js && node ./js-build/watch.js",
"build": "node ./js-build/build.js",
"sass": "node ./js-build/sass.js",
"js": "node ./js-build/js.js",
"clean": "node ./js-build/clean.js",
"ftl-to-json": "node ./js-build/ftl-to-json.mjs",
"localize-ftl": "node ./js-build/localize-ftl.mjs",
"clean-build": "node ./js-build/clean.js && node ./js-build/build.js",
"clean-start": "node ./js-build/clean.js && node ./js-build/build.js && node ./js-build/watch.js"
},
"license": "",
"dependencies": {
"@citeproc-rs/wasm": "^0.2.0",
"ace-builds": "^1.4.12",
"classnames": "^2.2.6",
"monaco-editor": "^0.47.0",
"monacopilot": "^1.1.15",
"prop-types": "^15.8.0",
"react": "^18.3.1",
"react-autosuggest": "^10.1.0",
"react-dom": "^18.3.1",
"react-intl": "^3.4.0",
"react-select": "^3.0.8",
"url": "^0.11.0"
},
"devDependencies": {
"@babel/cli": "^7.26.4",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@babel/preset-react": "^7.26.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@zotero/eslint-config": "^1.0.8",
"acorn": "^8.8.2",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"browserify": "^14.5.0",
"chai": "^4.1.2",
"chokidar": "^2.1.2",
"co-mocha": "^1.2.1",
"colors": "^1.4.0",
"eslint": "^9.17.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"fs-extra": "^3.0.1",
"ftl-tx": "^0.16.0",
"globals": "^15.14.0",
"globby": "^6.1.0",
"jspath": "^0.4.0",
"mocha": "^10.4.0",
"multimatch": "^2.1.0",
"pako": "^2.1.0",
"react-virtualized": "^9.22.4",
"sass": "^1.69.5",
"sinon": "^7.3.2",
"universalify": "^0.1.1"
}
}