39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"name": "auth-server",
|
|
"version": "1.8.1",
|
|
"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": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/krgamestudios/auth-server/issues"
|
|
},
|
|
"homepage": "https://github.com/krgamestudios/auth-server#readme",
|
|
"dependencies": {
|
|
"bcryptjs": "^2.4.3",
|
|
"cookie-parser": "^1.4.6",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mariadb": "^3.2.3",
|
|
"node-cron": "^3.0.3",
|
|
"node-fetch": "^2.7.0",
|
|
"nodemailer": "^6.9.7",
|
|
"npm": "^9.9.2",
|
|
"sequelize": "^6.35.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
}
|