-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1015 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1015 Bytes
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
{
"name": "gxu-score-script",
"version": "0.1.0",
"private": true,
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"start": "NODE_OPTIONS='--dns-result-order=ipv4first --max-old-space-size=512' node --env-file=.env --import tsx/esm src/main.ts",
"test": "LOG_LEVEL=debug NODE_OPTIONS='--dns-result-order=ipv4first --max-old-space-size=512' node --env-file=.env --import tsx/esm src/test.ts",
"lint": "eslint src/",
"format": "prettier --write src/",
"typecheck": "tsc --noEmit",
"check": "prettier --check src/ && eslint src/ && tsc --noEmit"
},
"dependencies": {
"nodemailer": "^9.0.6",
"playwright": "^1.52.0"
},
"devDependencies": {
"@types/node": "^26.4.1",
"@types/nodemailer": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^8.60.0",
"@typescript-eslint/parser": "^8.60.0",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"tsx": "^4.19.0",
"typescript": "^5.8.0"
}
}