{ "name": "order-site-backend", "version": "0.1.0", "private": true, "type": "module", "scripts": { "browser:install": "playwright install chromium", "browser:install:linux": "playwright install --with-deps chromium", "agiso:auto-delivery:test": "node scripts/test-agiso-auto-delivery.js", "cleanup:dev-data": "node scripts/cleanup-dev-data.js", "seed:dev-data": "node scripts/seed-dev-data.js", "build": "tsc -p tsconfig.build.json && rm -rf dist/db/migrations && mkdir -p dist/db && cp -R src/db/migrations dist/db/migrations", "db:migrate": "tsx src/db/migrate.js", "dev": "tsx watch --clear-screen=false --include config src/index.js", "test": "node --import tsx --test $(find src -name '*.test.js' -print)", "typecheck": "tsc -p tsconfig.json --noEmit", "start": "node dist/index.js", "start:src": "tsx src/index.js" }, "dependencies": { "express": "^5.1.0", "pg": "^8.16.3", "playwright": "1.42.1" }, "devDependencies": { "@types/node": "^25.6.0", "@types/pg": "^8.20.0", "tsx": "^4.22.3", "typescript": "^6.0.2" } }