-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
{
"name": "dashboard",
"version": "1.0.0",
"type": "module",
"main": "server.ts",
"description": "",
"scripts": {
"start": "node --env-file=.env server.ts",
"dev": "node --env-file=.env --watch server.ts",
"test": "LOG_LEVEL=silent node --test --test-global-setup ./test/setup/globalSetup.ts ./test/**/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmiln/SWGoHBotSite.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmiln/SWGoHBotSite/issues"
},
"homepage": "https://github.com/jmiln/SWGoHBotSite#readme",
"engines": {
"node": ">=25.2"
},
"dependencies": {
"connect-mongo": "^6.0.0",
"ejs": "^5.0.2",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"express-session": "^1.19.0",
"helmet": "^8.1.0",
"mongodb": "^7.2.0",
"pino": "^10.3.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.1.1",
"@testcontainers/mongodb": "^11.14.0",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"pino-pretty": "^13.1.3",
"typescript": "^6.0.3"
},
"overrides": {
"lodash": "^4.18",
"uuid": "^14.0.0"
}
}