
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@navanatech/react-app
Advanced tools
@navanatech/react-appShareable configs for Navana Tech's React setup. Includes the following:
Note that because changes to these configs may bring breaking changes to your app, each time packages are updated to latest, we will increment one major version. Only in case of issues fixed by updating a minor version of a dependency will this package publish minor/patch updates.
# Using npm
npm install -D @navanatech/react-app vite typescript postcss eslint prettier
# using yarn
yarn add -D @navanatech/react-app vite typescript postcss eslint prettier
# using pnpm (preferred)
pnpm add @navanatech/react-app vite typescript postcss eslint prettier
Add this to your package.json:
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"pretty": "pretty-quick --pattern '**/*.*(js|jsx|ts|tsx)'",
"lint": "eslint --ext .js --ext jsx --ext .ts --ext tsx ./src"
},
"prettier": "@navanatech/react-app/.prettierrc.json",
"eslintConfig": {
"extends": "react-app"
},
Add the following config files:
import { defineConfig } from "vite";
import viteConfig from "@navanatech/react-app/viteConfig";
import { dependencies } from "./package.json";
const manualChunks = {
core: ["react", "react-router-dom"],
other: Object.keys(dependencies).filter(key => !["react", "react-router-dom"].includes(key)),
};
export default defineConfig(viteConfig(manualChunks));
{
"extends": "@navanatech/react-app/tsconfig.json",
"compilerOptions": {
"types": ["vite/client", "@navanatech/react-app"],
},
"include": ["./src", "./vite.config.ts"]
}
module.exports = require("@navanatech/react-app/postcss.config");
FAQs
Did you know?

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.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.