Files
cunningham/package.json
jbpenrath 6aca0a3d85 💚(ci) fix performance issue of test job
Currently the test job seems to hit the maximum CPU resource available.
In order to prevent that we try to run tests on several workers.
2023-07-04 17:08:11 +02:00

34 lines
671 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}\""
},
"devDependencies": {
"prettier": "2.8.8",
"turbo": "1.10.6"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@changesets/cli": "2.26.2"
},
"packageManager": "yarn@1.22.19",
"volta": {
"node": "18.16.1",
"yarn": "1.22.19"
}
}