helpyourneighbour/backend/package.json
OpenClaw 3916dd42bf
Some checks are pending
Docker Test / test (push) Waiting to run
fix(#14): Implement database migrations system with baseline migration
2026-03-06 23:37:39 +00:00

33 lines
833 B
JSON

{
"name": "backend",
"comment": "added by heartbeat",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npm run test:smoke",
"start": "node src/server.js",
"dev": "node --watch src/server.js",
"db:init": "node src/db/init.js",
"db:seed": "node src/db/seed.js",
"db:migrate": "node migrations/runner.js --run",
"test:smoke": "node scripts/smoke-test.mjs",
"test:integration": "node scripts/integration-test.mjs"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"bcryptjs": "^3.0.3",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"mysql2": "^3.18.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"playwright": "^1.58.2"
}
}