Files
directus/package.json
Rijk van Zanten 9526b4e5b2 Improve S3 asset read performance (#17835)
* Create new s3 client for each read

* Temp disable ts while debugging

* Add concurrency test

* Add minio to other tests

* Reduce unavailable count

* Trigger blackbox tests whenever packages are updated

* Prevent minio-mc from exiting

* Decrease requests and increase test timeout

* Spam more requests over longer period

* Increase request timeout

* Run autocannon directly with larger image

* Fix tests

* Lock version

* My favorite file

---------

Co-authored-by: ian <licitdev@gmail.com>
2023-03-20 18:16:30 -04:00

66 lines
1.7 KiB
JSON

{
"name": "directus-monorepo",
"private": true,
"workspaces": [
"./app",
"./api",
"./packages/*"
],
"scripts": {
"format": "prettier --write \"**/*.{md,y?(a)ml,json}\"",
"lint": "eslint .",
"test:blackbox": "jest tests -c tests-blackbox/jest.config.js",
"test:blackbox:watch": "jest tests -c tests-blackbox/jest.config.js --watch",
"posttest:blackbox:watch": "ts-node --project ./tests-blackbox/tsconfig.json --transpile-only ./tests-blackbox/setup/teardown.ts"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --fix",
"*.{md,y?(a)ml,json}": "prettier --write"
},
"devDependencies": {
"@directus/shared": "workspace:*",
"@types/jest": "29.4.4",
"@types/js-yaml": "4.0.5",
"@types/lodash": "4.14.191",
"@types/seedrandom": "3.0.5",
"@types/supertest": "2.0.12",
"@types/uuid": "9.0.1",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"autocannon": "7.10.0",
"axios": "1.3.4",
"eslint": "8.36.0",
"eslint-config-prettier": "8.7.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.9.0",
"globby": "11.1.0",
"jest": "29.5.0",
"jest-environment-node": "29.5.0",
"js-yaml": "4.1.0",
"json-to-graphql-query": "2.2.5",
"knex": "2.4.2",
"lint-staged": "13.2.0",
"listr2": "5.0.8",
"lodash": "4.17.21",
"prettier": "2.8.4",
"seedrandom": "3.0.5",
"simple-git-hooks": "2.8.1",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5",
"uuid": "9.0.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=8.5.0"
},
"volta": {
"node": "16.15.0",
"npm": "8.10.0"
}
}