2022-11-06 18:36:13 +01:00
|
|
|
{
|
|
|
|
"name": "webserver-framework",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Navy's framework for Node.js webservers",
|
|
|
|
"main": "index.js",
|
|
|
|
"author": "Navy.gif",
|
|
|
|
"license": "MIT",
|
2022-11-09 10:23:54 +01:00
|
|
|
"private": false,
|
|
|
|
"repository": {
|
|
|
|
"url": "https://git.corgi.wtf/Navy.gif/webserver-framework",
|
|
|
|
"type": "git"
|
|
|
|
},
|
2022-11-06 18:36:13 +01:00
|
|
|
"dependencies": {
|
|
|
|
"@discordjs/collection": "^1.2.0",
|
|
|
|
"@navy.gif/logger": "^1.0.0",
|
2022-11-09 10:23:54 +01:00
|
|
|
"@navy.gif/passport-discord": "^0.2.2-b",
|
2022-11-10 14:37:55 +01:00
|
|
|
"argon2": "^0.30.2",
|
2022-11-09 10:23:54 +01:00
|
|
|
"connect-mongo": "^4.6.0",
|
2022-11-20 17:36:05 +01:00
|
|
|
"cors": "^2.8.5",
|
2022-11-06 18:36:13 +01:00
|
|
|
"dotenv": "^16.0.3",
|
|
|
|
"express": "^4.18.2",
|
2022-11-29 11:21:55 +01:00
|
|
|
"express-fileupload": "^1.4.0",
|
2022-11-09 10:23:54 +01:00
|
|
|
"express-session": "^1.17.3",
|
|
|
|
"helmet": "^6.0.0",
|
2023-02-06 15:52:54 +01:00
|
|
|
"mongodb": "^5.0.0",
|
2022-11-09 10:23:54 +01:00
|
|
|
"mysql": "^2.18.1",
|
2022-11-11 20:34:33 +01:00
|
|
|
"otplib": "^12.0.1",
|
2022-11-10 14:37:55 +01:00
|
|
|
"passport": "^0.6.0",
|
2022-11-11 20:34:33 +01:00
|
|
|
"passport-local": "^1.0.0",
|
|
|
|
"qrcode": "^1.5.1"
|
2022-11-06 18:36:13 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"eslint": "^8.26.0",
|
|
|
|
"nodemon": "^2.0.20"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2023-02-11 12:57:15 +01:00
|
|
|
"start": "node index.js",
|
2023-02-11 13:10:45 +01:00
|
|
|
"lint": "eslint src/ --fix"
|
2022-11-27 22:20:07 +01:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=18.0.0"
|
2022-11-06 18:36:13 +01:00
|
|
|
}
|
|
|
|
}
|