-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.38 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.38 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
{
"name": "SWGoHBotSite",
"version": "2.1.0",
"type": "module",
"main": "server.ts",
"description": "",
"scripts": {
"start": "node --env-file=.env server.ts",
"dev": "node --env-file=.env --watch server.ts",
"lint": "biome check --no-errors-on-unmatched .",
"typecheck": "tsc --noEmit",
"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": ">=26"
},
"dependencies": {
"connect-mongo": "^6.0.0",
"ejs": "^6.0.1",
"express": "^5.2.1",
"express-rate-limit": "^8.6.2",
"express-session": "^1.19.0",
"helmet": "^8.3.0",
"mongodb": "^7.5.0",
"pino": "^10.3.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.7",
"@testcontainers/mongodb": "^12.1.0",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.6",
"@types/express-session": "^1.19.0",
"pino-pretty": "^13.1.3",
"typescript": "^7.0.2"
}
}