Volta.js is a tool to manage easily several versions of Node locally. This tool is able to switch automatically to the right Node version by parsing package.json of the project. So we run volta pin node@16.15 for each of cunningham package.
33 lines
634 B
JSON
33 lines
634 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",
|
|
"lint": "turbo run lint",
|
|
"deploy": "turbo run deploy",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\""
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "2.8.7",
|
|
"turbo": "1.8.6"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@changesets/cli": "2.26.1"
|
|
},
|
|
"packageManager": "yarn@1.22.19",
|
|
"volta": {
|
|
"node": "16.15.1",
|
|
"yarn": "1.22.19"
|
|
}
|
|
}
|