🔧(global) setup Turborepo and package.json

Add configuration files to make use of Turborepo.
Setup constraints values for package.json regarding node and package manager.
This commit is contained in:
Nathan Vasse
2022-12-01 12:01:10 +01:00
committed by NathanVss
parent 0b532742e7
commit 2a26279cc2
6 changed files with 13332 additions and 2 deletions

26
package.json Normal file
View File

@@ -0,0 +1,26 @@
{
"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.0",
"turbo": "1.6.3"
},
"engines": {
"node": ">=16.0.0"
},
"dependencies": {},
"packageManager": "yarn@1.22.19"
}