{ "name": "saas-voc-server", "version": "0.1.0", "private": true, "type": "module", "description": "Independent domestic ecommerce VOC backend template", "engines": { "node": ">=22.13.0 <23" }, "scripts": { "build": "tsc -p tsconfig.json", "dev": "tsx watch src/server.ts", "dev:local": "tsx watch src/local-server.ts", "start": "node dist/src/server.js", "start:local": "tsx src/local-server.ts", "migrate": "tsx scripts/migrate.ts", "import:dataset": "tsx scripts/import-dataset.ts", "test": "tsx --test test/**/*.test.ts", "test:coverage": "tsx --test --experimental-test-coverage test/**/*.test.ts", "typecheck": "tsc -p tsconfig.json --noEmit" }, "dependencies": { "cors": "^2.8.6", "dotenv": "^17.2.3", "express": "^5.2.1", "parse-server": "^9.10.0", "pg": "^8.22.0", "zod": "^4.4.3" }, "devDependencies": { "@types/cors": "^2.8.19", "@types/express": "^5.0.6", "@types/node": "^24.10.0", "@types/pg": "^8.16.0", "tsx": "^4.23.1", "typescript": "^7.0.2" }, "overrides": { "ws": "8.21.0" } }