Files
order_site/apps/backend/package.json
T

27 lines
786 B
JSON

{
"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",
"cleanup:dev-data": "node scripts/cleanup-dev-data.js",
"seed:dev-data": "node scripts/seed-dev-data.js",
"db:migrate": "node src/db/migrate.js",
"dev": "node --watch-path=src --watch-path=config --watch-preserve-output src/index.js",
"test": "node --test",
"typecheck": "tsc -p tsconfig.json --noEmit",
"start": "node src/index.js"
},
"dependencies": {
"express": "^5.1.0",
"pg": "^8.16.3",
"playwright": "1.42.1"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.2"
}
}