Files
probo/package.json
Yash Gupta c24726b481 chore: add shared ESLint and Prettier configuration
Closes #615

- Add @probo/eslint-config package with ESLint 9.x flat config
- Enhance @probo/prettier with aligned stylistic rules
- Migrate console, trust, and UI packages to shared config
- Remove duplicate ESLint dependencies from individual packages

Signed-off-by: Yash Gupta <yash3144@gmail.com>
2026-01-22 12:51:42 +04:00

39 lines
806 B
JSON

{
"name": "probo",
"description": "Probo monorepo containing applications and shared packages",
"engines": {
"node": "v24.4.0"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check": "turbo run check",
"relay": "turbo run relay"
},
"devDependencies": {
"prettier": "^3.5.3",
"turbo": "^2.5.3"
},
"prettier": "@probo/prettier",
"graphql": {
"schema": "./pkg/server/api/console/v1/schema.graphql"
},
"overrides": {
"form-data": "^4.0.4"
},
"license": "MIT",
"packageManager": "npm@11.1.0",
"volta": {
"node": "24.4.0"
},
"dependencies": {
"react-dom": "^19.2.1"
}
}