Files
probo/package.json
Bryan Frimin 74fc3b8cd1 Rewrite identity and access management
Signed-off-by: Bryan Frimin <bryan@getprobo.com>
2026-01-17 10:07:34 -08:00

34 lines
695 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": {
"turbo": "^2.5.3"
},
"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"
}
}