mirror of
https://github.com/vercel/commerce.git
synced 2025-05-21 17:06:58 +00:00
48 lines
738 B
JSON
48 lines
738 B
JSON
{
|
|
"name": "commerce",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"site",
|
|
"packages/*"
|
|
],
|
|
"turbo": {
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": [
|
|
"dist/**",
|
|
".next/**"
|
|
]
|
|
},
|
|
"test": {
|
|
"dependsOn": [
|
|
"^build"
|
|
],
|
|
"outputs": []
|
|
},
|
|
"lint": {
|
|
"outputs": []
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"cache": false
|
|
}
|
|
}
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^7.0.4",
|
|
"prettier": "^2.5.1",
|
|
"turbo": "^1.0.12"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "turbo lint"
|
|
}
|
|
}
|
|
}
|