From f4f49cd244d2f840cbb79a9286973b5c98d4f534 Mon Sep 17 00:00:00 2001 From: Mhykol Date: Thu, 8 Jan 2026 07:23:16 -0500 Subject: Initial Commit --- package.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 package.json (limited to 'package.json') diff --git a/package.json b/package.json new file mode 100644 index 0000000..51c3487 --- /dev/null +++ b/package.json @@ -0,0 +1,37 @@ +{ + "name": "website", + "version": "1.0.0", + "description": "", + "main": "app.js", + "scripts": { + "web:dev": "nodemon app.js", + "web:prod": "node app.js", + "assets:dev": "nodemon ./instances/assets.js", + "assets:prod": "node instances/assets.js", + "start": "npm-run-all --parallel web:dev assets:dev", + "prod": "npm-run-all --parallel web:prod", + "update": "git pull; npm i; npm audit fix" + }, + "keywords": [], + "author": "", + "license": "ISC", + "type": "commonjs", + "dependencies": { + "body-parser": "^2.2.1", + "chalk": "^5.6.2", + "cookie-parser": "^1.4.7", + "dompurify": "^3.3.1", + "dotenv": "^17.2.3", + "express": "^5.2.1", + "express-rate-limit": "^8.2.1", + "helmet": "^8.1.0", + "markdown-it": "^14.1.0", + "mysql2": "^3.16.0", + "nodemailer": "^7.0.11", + "nodemon": "^3.1.11", + "npm-run-all": "^4.1.5", + "rss": "^1.2.2", + "sitemap": "^9.0.0", + "winston": "^3.19.0" + } +} -- cgit v1.3.1