1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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.2",
"chalk": "^5.6.2",
"cookie-parser": "^1.4.7",
"dompurify": "^3.4.2",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.1",
"helmet": "^8.1.0",
"markdown-it": "^14.1.1",
"mysql2": "^3.22.3",
"nodemailer": "^8.0.7",
"nodemon": "^3.1.14",
"npm-run-all": "^4.1.5",
"rss": "^1.2.2",
"sitemap": "^9.0.1",
"winston": "^3.19.0"
}
}
|