mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"name": "edr-platform",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"dev": "turbo run dev",
|
|
"dev:freight": "turbo run dev --filter=@edr/freight-*",
|
|
"dev:passenger": "turbo run dev --filter=@edr/passenger-*",
|
|
"build": "turbo run build",
|
|
"build:freight": "turbo run build --filter=@edr/freight-*",
|
|
"build:passenger": "turbo run build --filter=@edr/passenger-*",
|
|
"test": "turbo run test",
|
|
"lint": "turbo run lint",
|
|
"type-check": "turbo run type-check",
|
|
"format": "prettier --write \"**/*.{ts,tsx,json,md}\"",
|
|
"prepare": "husky"
|
|
},
|
|
"devDependencies": {
|
|
"turbo": "^2.3.0",
|
|
"typescript": "^5.5.4",
|
|
"prettier": "^3.3.3",
|
|
"husky": "^9.1.6",
|
|
"lint-staged": "^15.2.10",
|
|
"@commitlint/cli": "^19.5.0",
|
|
"@commitlint/config-conventional": "^19.5.0"
|
|
},
|
|
"lint-staged": {
|
|
"**/*.{ts,tsx}": ["eslint --fix", "prettier --write"],
|
|
"**/*.{json,md}": ["prettier --write"]
|
|
},
|
|
"packageManager": "pnpm@9.12.0",
|
|
"engines": {
|
|
"node": ">=20"
|
|
}
|
|
}
|