← back to Lifestyle Asset Intel

package.json

32 lines

{
  "name": "lifestyle-asset-intel",
  "version": "0.0.1",
  "private": true,
  "description": "Lifestyle Asset Intelligence — valuation, liquidity, and ownership-cost platform (handbags first)",
  "main": "server.js",
  "scripts": {
    "start": "node server.js",
    "dev": "node --watch server.js",
    "schema": "psql $PGDATABASE < db/schema.sql",
    "seed": "psql $PGDATABASE < db/seed.sql",
    "migrate": "node scripts/migrate.js",
    "test": "node --test tests/*.test.js",
    "pm2:start": "pm2 start ecosystem.config.js",
    "pm2:stop": "pm2 stop ecosystem.config.js",
    "pm2:restart": "pm2 restart ecosystem.config.js"
  },
  "dependencies": {
    "compression": "^1.7.5",
    "dotenv": "^16.4.5",
    "ejs": "^3.1.10",
    "express": "^4.21.0",
    "helmet": "^8.1.0",
    "marked": "^18.0.3",
    "morgan": "^1.10.0",
    "pg": "^8.13.1"
  },
  "engines": {
    "node": ">=20"
  }
}