← back to Handbag Auth Nextjs
auction-viewer/package.json
46 lines
{
"name": "auction-viewer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:unit": "jest tests/unit --coverage",
"test:integration": "jest tests/integration --coverage",
"test:e2e": "jest tests/e2e --coverage",
"test:performance": "jest tests/performance --no-coverage",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --maxWorkers=2",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e && npm run test:performance"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^3.0.3",
"better-sqlite3": "^12.4.1",
"compression": "^1.8.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.2.1",
"express-validator": "^7.3.0",
"helmet": "^8.1.0",
"joi": "^18.0.1",
"jsonwebtoken": "^9.0.2",
"node-cache": "^5.1.2",
"uuid": "^13.0.0",
"winston": "^3.18.3",
"xss": "^1.0.15"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/supertest": "^6.0.3",
"colors": "^1.4.0",
"jest": "^30.2.0",
"sqlite3": "^5.1.7",
"supertest": "^7.1.4"
}
}