2026-03-04 16:03:04 +00:00
|
|
|
{
|
|
|
|
|
"name": "backend",
|
2026-03-05 21:45:34 +00:00
|
|
|
"comment": "added by heartbeat",
|
2026-03-04 16:03:04 +00:00
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2026-03-17 07:07:36 +00:00
|
|
|
"test": "jest",
|
2026-03-17 22:08:53 +00:00
|
|
|
"test:watch": "jest --watch",
|
2026-03-04 16:03:04 +00:00
|
|
|
"start": "node src/server.js",
|
|
|
|
|
"dev": "node --watch src/server.js",
|
|
|
|
|
"db:init": "node src/db/init.js",
|
2026-03-04 18:28:50 +00:00
|
|
|
"db:seed": "node src/db/seed.js",
|
2026-03-06 23:37:39 +00:00
|
|
|
"db:migrate": "node migrations/runner.js --run",
|
2026-03-05 23:34:21 +00:00
|
|
|
"test:smoke": "node scripts/smoke-test.mjs",
|
2026-03-06 23:45:50 +00:00
|
|
|
"test:integration": "node scripts/integration-test.mjs",
|
2026-03-18 00:07:07 +00:00
|
|
|
"preflight": "node ../scripts/preflight-check.js",
|
2026-03-18 03:07:41 +00:00
|
|
|
"test:unit": "jest --testPathPattern=tests/",
|
|
|
|
|
"test:roles": "jest --testPathPattern=test/roles.test.js"
|
2026-03-04 16:03:04 +00:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "ISC",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"dependencies": {
|
2026-03-17 18:07:07 +00:00
|
|
|
"bcrypt": "^6.0.0",
|
2026-03-04 16:03:04 +00:00
|
|
|
"bcryptjs": "^3.0.3",
|
|
|
|
|
"dotenv": "^17.3.1",
|
|
|
|
|
"express": "^5.2.1",
|
2026-03-17 09:07:48 +00:00
|
|
|
"helmet": "^8.1.0",
|
2026-03-04 16:03:04 +00:00
|
|
|
"jsonwebtoken": "^9.0.3",
|
|
|
|
|
"mysql2": "^3.18.2",
|
2026-03-15 18:08:42 +00:00
|
|
|
"path-to-regexp": "^8.3.0",
|
|
|
|
|
"router": "^2.2.0",
|
2026-03-12 17:41:37 +00:00
|
|
|
"winston": "^3.19.0",
|
2026-03-04 16:03:04 +00:00
|
|
|
"zod": "^4.3.6"
|
2026-03-05 23:34:21 +00:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-03-17 07:07:36 +00:00
|
|
|
"@babel/core": "^7.29.0",
|
|
|
|
|
"@babel/preset-env": "^7.29.2",
|
2026-03-05 23:34:21 +00:00
|
|
|
"@playwright/test": "^1.58.2",
|
2026-03-17 07:07:36 +00:00
|
|
|
"babel-jest": "^30.3.0",
|
2026-03-17 18:07:07 +00:00
|
|
|
"jest": "^29.7.0",
|
2026-03-17 07:07:36 +00:00
|
|
|
"playwright": "^1.58.2",
|
2026-03-17 18:07:07 +00:00
|
|
|
"supertest": "^6.3.4"
|
2026-03-04 16:03:04 +00:00
|
|
|
}
|
|
|
|
|
}
|