🔧(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:
26
package.json
Normal file
26
package.json
Normal 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"
|
||||
}
|
||||
Reference in New Issue
Block a user