saleor-apps-redis_apl/package.json
Adrian Pilarczyk 0aa1d12cc4
feat: ⚗️ add check-spelling.yml gh action (#947)
* feat: ⚗️ add check-spelling.yml gh action

* chore: ⚗️ make typos to test gh action

* feat:  add cspell config

* fix: 🐛 typos

* feat: ⚗️ test verbose

* Revert "feat: ⚗️ test verbose"

This reverts commit 3bf36f5a29b6af2ca969a92f0bc61e12e89d8a44.

* feat:  add cspell locally

scripts for all files & lint-staged

* feat:  add new words to dictionary in cspell.json

* refactor: 🚚 cspell.json -> cspell.config.json

* Revert "refactor: 🚚 cspell.json -> cspell.config.json"

This reverts commit b5c96f6909cf5f0ab1173255ef7ded7e360ca83f.

* Revert "feat:  add new words to dictionary in cspell.json"

This reverts commit 69d8bdd3f9ed19ab07044e3e986c8d0b06114e43.

* feat:  add ignorePaths

* feat: add more ignore

* feat:  add words to cspell.json

* refactor: ♻️ change dictionary in cspell.json

* refactor: make words capitalized

* fix: 🐛 add md/mdx to check-spelling
2023-09-01 11:44:20 +02:00

47 lines
1.2 KiB
JSON

{
"name": "saleor-apps",
"version": "0.0.0",
"scripts": {
"build": "turbo run build",
"check-deps": "syncpack list-mismatches",
"check-spelling": "cspell **/*.{jsx,tsx,js,ts,md,mdx}",
"dev": "turbo run dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"format-package-json": "syncpack format",
"generate": "turbo run generate",
"github:release": "pnpm changeset tag && git push --follow-tags",
"lint": "turbo run lint",
"lint-staged": "lint-staged",
"prepare": "husky install",
"start": "turbo run start",
"test": "turbo run test"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "18.15.3",
"cspell": "^7.2.0",
"eslint": "8.46.0",
"eslint-config-saleor": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"next": "13.4.8",
"prettier": "3.0.1",
"syncpack": "10.9.3",
"turbo": "1.10.12"
},
"engines": {
"node": ">=18.0.0"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{ts,tsx,md}": "prettier --write",
"*.{ts,tsx,md,js,jsx}": "cspell"
},
"packageManager": "pnpm@8.2.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*",
"templates/*"
]
}