← back to Small Business Builder

package.json

30 lines

{
  "name": "small-business-builder",
  "version": "0.1.1",
  "private": true,
  "description": "Template-driven landing-page builder for small businesses. First vertical: LA salons / barbershops / nail salons. 5 templates per business, scrape existing website + Instagram for initial data, three pricing tiers (free / plus $19 / premium $79).",
  "license": "UNLICENSED",
  "type": "module",
  "scripts": {
    "migrate": "psql -d small_business_directory -f migrations/001_init.sql",
    "server": "node src/server/index.js",
    "dev": "node --watch src/server/index.js",
    "pm2:start": "pm2 start ecosystem.config.cjs && pm2 save",
    "pm2:stop": "pm2 stop ecosystem.config.cjs",
    "pm2:logs": "pm2 logs smb-builder"
  },
  "dependencies": {
    "@browserbasehq/sdk": "^2.10.0",
    "cheerio": "^1.0.0",
    "compression": "^1.8.1",
    "cookie-parser": "^1.4.7",
    "dotenv": "^16.4.7",
    "express": "^4.21.2",
    "helmet": "^8.1.0",
    "multer": "^2.1.1",
    "pg": "^8.13.1",
    "playwright-core": "^1.59.1",
    "undici": "^7.2.0"
  }
}