saleor-apps-redis_apl/package.json
Lukasz Ostrowski 830cfe92ce
Extract logger (#439)
* Extract logger

* Replace logger with shared one

* Replace CRM logger with shared one

* Replace E&M logger with shared one

* Replace invoices logger with shared one

* Replace Products Feed logger with shared one

* Replace Search logger with shared one

* Replace Taxes logger with shared one

* Uninstall pino from apps direct dependency

* Update docs

* Update changeset

* Bumped Klaviyo typescript version to hopefully unblock the build

* Change packageManager field to pnpm 8.2.0

* removed package manager field from klaviyo package.json
2023-05-05 08:15:47 +02:00

39 lines
No EOL
913 B
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",
"test:ci": "turbo run test:ci",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"generate": "turbo run generate",
"prepare": "husky install"
},
"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"
}
}