Files
directus/package.json
Pascal Jufer 5b256f64c6 Use pnpm 8.1.0, define version via packageManager field, clean-up other version definitions (#17993)
* Use `packageManager` field to define pnpm version in one place

* Update to pnpm 8.1.0 (see also #17990)

* Enforce pnpm >= 8 via `engines`

* Clean-up `engines` & remove `volta`

* Add dedup workaround, consolidate test env prepare steps

* No checkout, no action :-)

* Bump minimal pnpm version to 8.1.0

Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>

---------

Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
2023-04-04 15:20:25 -04:00

54 lines
1.4 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"
},
"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",
"listr2": "5.0.8",
"lodash": "4.17.21",
"prettier": "2.8.4",
"seedrandom": "3.0.5",
"supertest": "6.3.3",
"ts-jest": "29.0.5",
"typescript": "4.9.5",
"uuid": "9.0.0"
},
"packageManager": "pnpm@8.1.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.1.0"
}
}