Base backend code

This commit is contained in:
2026-05-12 19:29:45 -04:00
parent 8dd2d05643
commit f591bdffb5
13 changed files with 2636 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
{
"name": "netdomainmanager",
"version": "1.0.0",
"description": "Registers and configures domains behind CoreDNS",
"repository": {
"type": "git",
"url": "https://git.modnark.xyz/Modnark/NetDomainManager.git"
},
"license": "MIT",
"author": "Modnark",
"type": "commonjs",
"main": "index.js",
"scripts": {
"dev": "NODE_ENV=devel nodemon index.js",
"prod": "NODE_ENV=prod node index.js",
"wdev": "set NODE_ENV=devel&& nodemon index.js",
"wprod": "set NODE_ENV=prod&& nodemon index.js"
},
"dependencies": {
"connect-session-sequelize": "^8.0.6",
"cookie-parser": "^1.4.7",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-handlebars": "^9.0.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"nodemon": "^3.1.14",
"sequelize": "^6.37.8",
"sqlite3": "^6.0.1"
}
}