forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
45
{
"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",
"pnpm": "^8.6"
},
"dependencies": {
"@types/node": "^18.16.18",
"@types/web": "^0.0.84",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"ab": "github:lichess-org/ab-stub",
"chessground": "^8.3.11",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "2.8.1",
"typescript": "^5.1.5"
},
"scripts": {
"format": "prettier --write . --loglevel warn",
"check-format": "prettier --check . --loglevel warn",
"lint": "eslint . --ext .ts",
"journal": "journalctl --user -fu lila -o cat",
"metals": "tail -F .metals/metals.log | stdbuf -oL cut -c 21- | rg -v '(notification for request|handleCancellation)'",
"serverlog": "pnpm journal & pnpm metals",
"multilog": "pnpm serverlog & ui/build -w"
}
}