Files
auth-server/package.json
T
dependabot[bot] 700a8aaf34 Bump bcryptjs from 3.0.2 to 3.0.3
Bumps [bcryptjs](https://github.com/dcodeIO/bcrypt.js) from 3.0.2 to 3.0.3.
- [Release notes](https://github.com/dcodeIO/bcrypt.js/releases)
- [Commits](https://github.com/dcodeIO/bcrypt.js/compare/v3.0.2...v3.0.3)

---
updated-dependencies:
- dependency-name: bcryptjs
  dependency-version: 3.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-05 06:38:37 +11:00

38 lines
1.0 KiB
JSON

{
"name": "auth-server",
"version": "1.8.10",
"description": "An API centric auth server. Uses Sequelize and mariaDB by default.",
"main": "server/server.js",
"scripts": {
"start": "node server/server.js",
"dev": "npm run watch:server",
"watch:server": "nodemon . --ext js,jsx,json --ignore 'node_modules/*'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/krgamestudios/auth-server.git"
},
"author": "Kayne Ruse",
"license": "Zlib",
"bugs": {
"url": "https://github.com/krgamestudios/auth-server/issues"
},
"homepage": "https://github.com/krgamestudios/auth-server#readme",
"dependencies": {
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.4.5",
"node-cron": "^4.2.1",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.10",
"sequelize": "^6.37.7"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}