1
0
mirror of synced 2025-10-29 02:19:19 +00:00

login system & basic design system

This commit is contained in:
Valentin PUCCETTI
2023-09-10 13:57:57 +02:00
parent 4fec96b4b1
commit 8340a135d6
25 changed files with 1362 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "accessgate",
"version": "0.0.1",
"description": "Centralized, self-hosted management panel for access via ssh keys",
"main": "index.js",
"scripts": {
"test": "node index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/itsmrval/accessgate.git"
},
"author": "itsmrval",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/itsmrval/accessgate/issues"
},
"homepage": "https://github.com/itsmrval/accessgate#readme",
"dependencies": {
"axios": "^1.5.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"passport": "^0.6.0",
"passport-github2": "^0.1.12"
}
}