diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 000000000..220e300ec --- /dev/null +++ b/package-lock.json @@ -0,0 +1,18 @@ +{ + "name": "probo", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "probo", + "license": "MIT", + "workspaces": [ + "apps/*", + "packages/*" + ], + "engines": { + "node": "22.x" + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 000000000..f37c7a2c5 --- /dev/null +++ b/package.json @@ -0,0 +1,19 @@ +{ + "name": "probo", + "description": "Probo monorepo containing applications and shared packages", + "packageManager": "npm@11.1.0", + "engines": { + "node": "22.x" + }, + "workspaces": [ + "apps/*", + "packages/*" + ], + "scripts": { + "dev": "npm run dev --workspaces --if-present", + "build": "npm run build --workspaces --if-present", + "test": "npm run test --workspaces --if-present", + "lint": "npm run lint --workspaces --if-present" + }, + "license": "MIT" +}