{
  "name": "lefv-cra",
  "version": "1.0.6",
  "description": "Production-ready React boilerplate with TypeScript, Supabase, Redux, Redis caching, and Mistral AI SDK. Built for technical interviews.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "bin",
    "dist",
    "src",
    "server",
    "docs",
    "public",
    "index.html",
    "vite.config.ts",
    "tsconfig.json",
    "tsconfig.app.json",
    "tsconfig.node.json",
    "tsconfig.server.json",
    "tailwind.config.ts",
    "postcss.config.js",
    "eslint.config.js",
    ".env.example",
    "README.md",
    "ARCHITECTURE.md"
  ],
  "bin": {
    "lefv-cra": "./bin/create-app.js"
  },
  "scripts": {
    "dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
    "dev:client": "vite",
    "dev:server": "nodemon --exec tsx server/index.ts",
    "build": "tsc -b && vite build",
    "build:server": "tsc -p tsconfig.server.json",
    "preview": "vite preview",
    "lint": "eslint . --fix",
    "format": "prettier --write \"src/**/*.{ts,tsx,css}\" \"server/**/*.ts\"",
    "test": "echo \"Tests coming soon\" && exit 0",
    "prepare": "npm run build",
    "prepublishOnly": "npm run lint && npm run build"
  },
  "keywords": [
    "react",
    "typescript",
    "vite",
    "supabase",
    "redux",
    "redis",
    "boilerplate",
    "starter",
    "template",
    "mistral",
    "interview"
  ],
  "author": "Luis Villanueva",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/gwicho38/lefv-cra"
  },
  "bugs": {
    "url": "https://github.com/gwicho38/lefv-cra/issues"
  },
  "homepage": "https://github.com/gwicho38/lefv-cra#readme",
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@mistralai/mistralai": "^1.10.0",
    "@reduxjs/toolkit": "^2.11.1",
    "@supabase/supabase-js": "^2.87.1",
    "@tanstack/react-query": "^5.90.12",
    "axios": "^1.13.2",
    "cors": "^2.8.5",
    "dotenv": "^17.2.3",
    "express": "^5.2.1",
    "ioredis": "^5.8.2",
    "lefv-cra": "^1.0.3",
    "react": "^19.2.0",
    "react-dom": "^19.2.0",
    "react-redux": "^9.2.0",
    "react-router-dom": "^7.10.1",
    "uuid": "^13.0.0",
    "zod": "^4.1.13"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.1",
    "@tailwindcss/vite": "^4.1.17",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.6",
    "@types/node": "^24.10.1",
    "@types/react": "^19.2.5",
    "@types/react-dom": "^19.2.3",
    "@types/uuid": "^10.0.0",
    "@vitejs/plugin-react": "^5.1.1",
    "concurrently": "^9.2.1",
    "eslint": "^9.39.1",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-react-hooks": "^7.0.1",
    "eslint-plugin-react-refresh": "^0.4.24",
    "globals": "^16.5.0",
    "nodemon": "^3.1.11",
    "prettier": "^3.7.4",
    "tailwindcss": "^4.1.17",
    "ts-node": "^10.9.2",
    "tsx": "^4.19.0",
    "typescript": "~5.9.3",
    "typescript-eslint": "^8.46.4",
    "vite": "^7.2.4"
  }
}
