forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.36 KB
/
package.json
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
{
"name": "lila",
"version": "2.0.0",
"private": true,
"description": "lichess.org: the forever free, adless and open source chess server",
"repository": {
"type": "git",
"url": "https://github.com/lichess-org/lila.git"
},
"keywords": [
"chess",
"lichess"
],
"author": "Thibault Duplessis and the gang",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/lichess-org/lila/issues"
},
"homepage": "https://lichess.org",
"engines": {
"node": ">=14 <=19",
"pnpm": "^7.18.2"
},
"dependencies": {
"@types/node": "^18.11.17",
"@types/web": "^0.0.84",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"ab": "https://github.com/lichess-org/ab-stub",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "2.8.1",
"typescript": "^4.9.4",
"xml2js": "0.4.23"
},
"scripts": {
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint . --ext .ts",
"lila-journal": "journalctl --user -fu lila -o cat",
"serverlog": "multitail -cT ansi -l 'pnpm lila-journal' -cT ansi -ke '^[0-9\\.]{10} ' -I .metals/metals.log",
"multilog": "multitail -cT ansi -l 'pnpm lila-journal' -cT ansi -L 'ui/build -w' -cT ansi -ke '^[0-9\\.]{10} ' -I .metals/metals.log -cT ansi -I logs/all.log"
}
}