-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 KB
/
package.json
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
38
39
40
41
42
43
44
{
"name": "highstreetgym",
"version": "1.0.0",
"description": "NodeJs App with pug template engine, xml",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node --env-file=.env server.js",
"dev": "node --watch --env-file=.env server.js"
},
"author": "Beibei Yang",
"license": "Apache-2.0",
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6"
},
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dompurify": "^3.1.6",
"express": "^4.19.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.4.0",
"express-session": "^1.18.0",
"express-validator": "^7.2.0",
"fast-xml-parser": "^4.5.1",
"helmet": "^7.1.0",
"jsdom": "^25.0.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^3.11.0",
"pug": "^3.0.3",
"sax": "^1.4.1"
}
}