mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
* Updated log * Updates to root * Updates to pnpm * successfully moved to pnpm * type issue * Local as the default provider * Upgrade dependencies * Revert to local * Upgrade React * Update node-fetch deps * Fix types * Ignore warnings * Fix missing dependency * Update pnpm-lock.yaml * Add missing @types/cookie * Upgrade dependencies * Fix missing dependencies * Update README.md Co-authored-by: Bel Curcio <curciobel@gmail.com>
24 lines
484 B
JSON
24 lines
484 B
JSON
{
|
|
"name": "commerce",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build --filter=next-commerce...",
|
|
"dev": "turbo run dev",
|
|
"start": "turbo run start",
|
|
"types": "turbo run types",
|
|
"prettier-fix": "prettier --write ."
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^8.0.1",
|
|
"prettier": "^2.7.1",
|
|
"turbo": "^1.4.6"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "turbo run lint"
|
|
}
|
|
},
|
|
"packageManager": "pnpm@7.5.0"
|
|
}
|