37 lines
983 B
JSON
37 lines
983 B
JSON
{
|
|
"name": "auth-server",
|
|
"version": "1.4.0",
|
|
"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",
|
|
"body-parser": "^1.19.0",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^8.6.0",
|
|
"express": "^4.17.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mariadb": "^2.5.4",
|
|
"node-cron": "^2.0.3",
|
|
"nodemailer": "^6.6.3",
|
|
"sequelize": "^6.6.5"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.12"
|
|
}
|
|
}
|