saleor-apps-redis_apl/package.json
Adrian Pilarczyk 8af0f022e3
feat: align monorepo deps automatically (#518)
* build:  add syncpack

* feat:  add syncpack github action

* feat:  update syncpack

* ci: 🔧 update syncpackrc

* ci: 👷 update check-deps to ignore all

* Update check-deps.yml

* Update check-deps.yml

* Update check-deps.yml

* Update check-deps.yml

* Update package.json

* ci: 👷 add continue-on-error

* ci: 💚 move continue-on-error
2023-06-01 09:09:19 +02:00

43 lines
1.1 KiB
JSON

{
"name": "saleor-apps",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"start": "turbo run start",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"prepare": "husky install",
"github:release": "pnpm changeset tag && git push --follow-tags",
"check-deps": "syncpack fix-mismatches --source \"apps/*/package.json\" --source \"packages/*/package.json\" --filter \"@saleor/app-sdk|@saleor/macaw-ui\""
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"eslint": "^8.35.0",
"eslint-config-saleor": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"next": "^13.3.0",
"prettier": "^2.8.4",
"turbo": "^1.9.0"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.2.0",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write"
},
"dependencies": {
"syncpack": "^10.1.0"
}
}