Files
the_order/package.json

59 lines
1.6 KiB
JSON
Raw Permalink Normal View History

{
"name": "the-order-monorepo",
"version": "0.1.0",
"private": true,
"description": "The Order - Monorepo for all applications, services, and packages",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"test": "turbo run test",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,yaml,yml}\"",
"lint:batch": "bash scripts/lint-batch.sh",
"prepare": "husky install || true"
},
"lint-staged": {
"*.{ts,tsx}": [
"bash -c 'NODE_OPTIONS=\"--max-old-space-size=4096\" eslint --fix --config eslint.config.js \"$@\"' --",
"prettier --write"
],
"*.{json,md,yaml,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@turbo/gen": "^1.11.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-sonarjs": "^1.0.0",
"husky": "^8.0.3",
"lint-staged": "^16.2.6",
"prettier": "^3.1.1",
"turbo": "^1.11.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0",
"pnpm": {
"overrides": {
"@opentelemetry/api": "^1.8.0"
}
},
"workspaces": [
"apps/*",
"services/*",
"packages/*"
]
}