-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.47 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "gdl-api",
"version": "0.4.4",
"description": "gdl-api express server",
"author": "McAlec",
"keywords": [
"gdl-api",
"api",
"mcalec.dev"
],
"license": "MIT",
"main": "server.js",
"type": "commonjs",
"scripts": {
"dev": "npm run build && nodemon .",
"start": "npm run build && node server.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format:check": "prettier . --check --config .prettierrc",
"format:fix": "prettier . --write --config .prettierrc",
"tailwind:minify": "tailwindcss -c ./tailwind.config.js -o ./public/css/min/tailwind.min.css --minify",
"minify": "node ./utils/minify.js",
"build": "npm run tailwind:minify && npm run minify",
"typecheck": "npm run typecheck:api && npm run typecheck:public",
"typecheck:api": "tsc -p ./tsconfig.json --noEmit",
"typecheck:public": "tsc -p ./public/tsconfig.json --noEmit",
"check": "npm run lint && npm run format:check && npm run typecheck",
"licenses": "license-report --only=prod > public/json/licenses.json"
},
"engines": {
"node": ">=24"
},
"dependencies": {
"@intrnl/xxhash64": "^0.1.2",
"bcrypt": "^6",
"bytes": "^3",
"chalk": "^4",
"clean-css": "^5",
"connect-mongo": "^6",
"connect-redis": "^9",
"cookie-parser": "^1",
"cors": "^2",
"debug": "^4",
"dotenv": "^17",
"ejs": "^6",
"encodeurl": "^2",
"express": "^5",
"express-bearer-token": "^3",
"express-openapi-validator": "^5",
"express-rate-limit": "^8",
"express-session": "^1",
"express-useragent": "^2",
"fast-glob": "^3",
"ffmpeg-static": "^5",
"figlet": "^1",
"file-type": "^22",
"filename-reserved-regex": "^4",
"helmet": "^8",
"isbot": "^5",
"js-yaml": "^4",
"lusca": "^1",
"mammoth": "^1",
"mime-types": "^3",
"mongoose": "^9",
"morgan-body": "^2",
"ms": "^2",
"multer": "^2",
"normalize-path": "^3",
"normalize-url": "^9",
"passport": "^0.7.0",
"passport-discord-auth": "^1",
"passport-github2": "^0.1.12",
"passport-local": "^1",
"redis": "^6",
"resolve-path": "^1",
"serve-favicon": "^2",
"sharp": "^0.35.0",
"slash": "^5",
"swagger-parser": "^10",
"swagger-ui-express": "^5",
"terser": "^5",
"uuid": "^14",
"validator": "^13"
},
"devDependencies": {
"@eslint/css": "^0.14.1",
"@eslint/js": "^9.39.2",
"@eslint/json": "^0.14.0",
"@tailwindcss/cli": "^4.2.4",
"@types/bcrypt": "^6.0.0",
"@types/bytes": "^3.1.5",
"@types/clean-css": "^4.2.11",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express-session": "^1.18.2",
"@types/figlet": "^1.7.0",
"@types/filename-reserved-regex": "^3.0.0",
"@types/js-yaml": "^4.0.9",
"@types/lusca": "^1.7.5",
"@types/mime-types": "^3.0.1",
"@types/ms": "^2.1.0",
"@types/node": "^26",
"@types/normalize-path": "^3.0.2",
"@types/passport": "^1.0.17",
"@types/passport-github2": "^1.2.9",
"@types/passport-local": "^1.0.38",
"@types/resolve-path": "^1.4.3",
"@types/swagger-ui-express": "^4.1.8",
"@types/validator": "^13.15.10",
"eslint": "^9.39.4",
"eslint-plugin-jsonc": "^3.1.2",
"license-report": "^6.8.2",
"nodemon": "^3",
"prettier": "^3",
"prettier-plugin-tailwindcss": "^0.8.0",
"tailwindcss": "^4",
"typescript": "^6"
},
"allowScripts": {
"bcrypt": true,
"ffmpeg-static": true,
"sharp": true
}
}