Organized the differences between server and docker versions.

We are launching a docker version (server version) today so we want to just organize the repo
so its easier to navigate.
This commit is contained in:
2025-12-16 21:50:22 -05:00
parent b86f14a8f2
commit 28ff6ccc68
193 changed files with 23188 additions and 5 deletions

34
docker/package.json Normal file
View File

@@ -0,0 +1,34 @@
{
"name": "waifu-board",
"version": "2.0.0",
"description": "",
"main": "main.js",
"scripts": {
"build": "tsc",
"start": "tsc && node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"@fastify/static": "^8.3.0",
"bcrypt": "^6.0.0",
"bindings": "^1.5.0",
"cheerio": "^1.1.2",
"dotenv": "^17.2.3",
"fastify": "^5.6.2",
"jsonwebtoken": "^9.0.3",
"node-addon-api": "^8.5.0",
"playwright-chromium": "^1.57.0",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"@types/bcrypt": "^6.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^24.0.0",
"node-gyp": "^12.1.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
}
}