Files
cunningham/package.json
Nathan Vasse b2866c1d2b 📌(deps) pin node to version 18
We force node to version 18 otherwise renovate will keep updating it
to version 20.
2023-11-21 17:00:07 +01: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.1.0",
"turbo": "1.10.16"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@changesets/cli": "2.26.2"
},
"packageManager": "yarn@1.22.21",
"resolutions": {
"@testing-library/dom": "9.3.3"
},
"volta": {
"node": "18.18.2",
"yarn": "1.22.21"
}
}