🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@deepracticex/monorepo-config

Package Overview
Dependencies
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@deepracticex/monorepo-config

Shared monorepo tooling dependencies for Deepractice projects

latest
Source
npmnpm
Version
0.0.1
Version published
Weekly downloads
1
-80%
Maintainers
2
Weekly downloads
 
Created
Source

@deepracticex/monorepo-config

Shared monorepo tooling configuration for Deepractice projects.

Installation

pnpm add -D @deepracticex/monorepo-config @changesets/cli turbo lefthook rimraf

Usage

Turbo Configuration

// turbo.json (root)
import config from "@deepracticex/monorepo-config/turbo.json";

export default config;

Or extend it:

{
  "extends": ["@deepracticex/monorepo-config/turbo.json"],
  "tasks": {
    "dev": {
      "cache": false
    }
  }
}

Included Tools

This config declares peer dependencies for:

  • turbo - Build system for monorepos
  • @changesets/cli - Version management and changelog generation
  • lefthook - Git hooks manager
  • rimraf - Cross-platform rm -rf

Scripts

Add to your root package.json:

{
  "scripts": {
    "build": "turbo build",
    "test": "turbo test",
    "lint": "turbo lint",
    "typecheck": "turbo typecheck",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "pnpm build && changeset publish"
  }
}

Turbo Tasks

Configured tasks:

  • build - Build packages (depends on dependencies' build)
  • test - Run tests (depends on build)
  • lint - Lint code
  • typecheck - Type checking
  • format - Format code
  • clean - Clean build artifacts

Features

  • ✅ Optimized task dependency graph
  • ✅ Caching configuration
  • ✅ Output definitions
  • ✅ Standard monorepo workflows

Keywords

monorepo

FAQs

Package last updated on 09 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts