-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.41 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.41 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
{
"name": "blastdoor-gateway",
"version": "1.0.0",
"description": "Secure authentication gateway for Foundry VTT",
"private": true,
"type": "module",
"scripts": {
"start": "node src/server.js",
"api": "node src/api-server.js",
"assistant": "node src/assistant-service.js",
"manager": "node src/manager.js",
"dev": "node --watch src/server.js",
"hash-password": "node scripts/hash-password.js",
"gen-secret": "node scripts/gen-secret.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"check": "npm run lint && npm run test:coverage",
"test": "node --test",
"test:coverage": "c8 --reporter=text-summary --reporter=lcov --check-coverage --lines 70 --functions 70 --branches 55 --statements 70 node --test",
"test:integration": "playwright test -c playwright.config.js",
"test:integration:ci": "playwright test -c playwright.config.js",
"prepare": "husky"
},
"engines": {
"node": ">=22"
},
"dependencies": {
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-session": "^1.18.1",
"helmet": "^8.0.0",
"http-proxy-middleware": "^3.0.3",
"nodemailer": "^7.0.5",
"otplib": "^13.3.0",
"pg": "^8.19.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"c8": "^11.0.0",
"eslint": "^10.0.2",
"globals": "^17.3.0",
"husky": "^9.1.7"
}
}