Update README.md to provide a comprehensive overview of The Order monorepo, including repository structure, quickstart guide, development workflow, and contribution guidelines.
This commit is contained in:
35
package.json
Normal file
35
package.json
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"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}\"",
|
||||
"prepare": "husky install || true"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@turbo/gen": "^1.11.0",
|
||||
"prettier": "^3.1.1",
|
||||
"turbo": "^1.11.0",
|
||||
"typescript": "^5.3.3",
|
||||
"husky": "^8.0.3"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=18.0.0",
|
||||
"pnpm": ">=8.0.0"
|
||||
},
|
||||
"packageManager": "pnpm@8.15.0",
|
||||
"workspaces": [
|
||||
"apps/*",
|
||||
"services/*",
|
||||
"packages/*"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user