-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "auth-server",
"version": "1.8.7",
"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": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^9.0.2",
"mariadb": "^3.3.0",
"node-cron": "^3.0.3",
"node-fetch": "^3.3.2",
"nodemailer": "^6.9.13",
"sequelize": "^6.37.3"
},
"devDependencies": {
"nodemon": "^3.1.0"
}
}