initial commit

This commit is contained in:
Toni
2026-02-09 11:24:43 +01:00
commit 413f24bc96
15 changed files with 2179 additions and 0 deletions

18
package.json Normal file
View File

@@ -0,0 +1,18 @@
{
"name": "whattowatch",
"version": "1.0.0",
"description": "Simple watchlist app with MariaDB and a minimal frontend",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"express": "^4.18.2",
"mysql2": "^3.3.3",
"dotenv": "^16.3.1"
},
"devDependencies": {
"nodemon": "^2.0.22"
}
}