Files
What-to-watch/package.json
2026-02-09 11:24:43 +01:00

18 lines
383 B
JSON

{
"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"
}
}