Files
order_site/apps/backend/package.json
T
2026-04-08 22:21:11 +08:00

19 lines
549 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",
"db:migrate": "node src/db/migrate.js",
"dev": "node --watch-path=src --watch-path=config --watch-preserve-output src/index.js",
"start": "node src/index.js"
},
"dependencies": {
"express": "^5.1.0",
"playwright": "1.42.1"
}
}