npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

trickycdm-react-15-scripts

v1.0.0

Published

Configuration and scripts for Create React App, forked at version 2.1.8 of CRA

Readme

Custom React Scripts

This package allows you to create a bootastrapped React project. It is forked from Create React App with a few important additions.

You can find the original docs here:

Changelog

Our changes are independently versioned. This allows us to track our changes and the main CRA project.

We will pull in CRA changes on a regular basis. The keep breaking changes to a minimum.

v1.0.0

  • added default dependencies (see default dependencies section)
  • added pre-push config
  • added new folder structure
  • added example of components and test structure
  • added example of Ducks Redux format
  • added react router and example
  • added GlobalErrorBoundary component
  • added setupTests.js to enable enzyme
  • added semistandard formatter
  • added .env files
  • added .npmrc file to save-exact

New Project via the CLI

npx create-react-app <projectName> --use-npm --scripts-version <custom-react-scripts>

Additional Default packages

CRA comes bundled with lots of it's own default dependencies. You can see them in the *-react-scripts npm package.

We add a few more to try and unify the way we done things. A rational for each is below.

  • apisauce - Built ontop of axios, it is included to standardise any HTTP calls. Eventually there will be a standard API connector built from this, so any microservice calls written should be modular and exportable.
  • js-cookie - a nice way to handle cookies
  • react-router-dom - DOM binding for react-router
  • react-redux - React state management
  • redux - State management used in react-redux
  • redux-thunk - Side effects library for Redux
  • enzyme - Support for better Jest testing
  • enzyme-adapter-react-16 - React 16 bindings for Enzyme
  • enzyme-to-json - Better snapshot testing with Enzyme