Files
cunningham/package.json
Nathan Vasse fe5daa918f 📌(deps) set @testing-library/dom as resolution
The renovate PR made the tests fail due to lots of new warnings.
This kind of warning: update not wrapped inside act ...
They were mainly throwed from user event API calls, but internally
this library already calls act() so it is not supposed to happen.
In reality it happen when different versions of @testing-library/dom
are used by the framework wrapper and the main one loaded by our
project.

See https://github.com/testing-library/user-event/discussions/906
2023-09-28 11:05:51 +02:00

39 lines
799 B
JSON

{
"name": "cunningham",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"test": "turbo run test",
"test-ci": "turbo run test-ci",
"lint": "turbo run lint",
"deploy": "turbo run deploy",
"format": "prettier --write \"**/*.{ts,tsx,md,json,cjs,js}\""
},
"devDependencies": {
"cross-env": "7.0.3",
"make-dir-cli": "3.1.0",
"prettier": "3.0.3",
"turbo": "1.10.14"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@changesets/cli": "2.26.2"
},
"packageManager": "yarn@1.22.19",
"resolutions": {
"@testing-library/dom": "9.3.3"
},
"volta": {
"node": "18.18.0",
"yarn": "1.22.19"
}
}