forked from lichess-org/lila
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 1.67 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"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": ">=10 <=18",
"yarn": "^1"
},
"dependencies": {
"prettier": "2.6.2",
"xml2js": "0.4.23"
},
"devDependencies": {
"@types/web": "^0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"typescript": "^4"
},
"scripts": {
"format": "prettier --write .",
"check-format": "prettier --check .",
"lint": "eslint . --ext .ts"
},
"workspaces": [
"ui",
"ui/analyse",
"ui/ceval",
"ui/challenge",
"ui/chat",
"ui/chess",
"ui/cli",
"ui/common",
"ui/chart",
"ui/coordinateTrainer",
"ui/dasher",
"ui/editor",
"ui/game",
"ui/keyboardMove",
"ui/nvui",
"ui/mod",
"ui/palantir",
"ui/insight",
"ui/learn",
"ui/lobby",
"ui/notify",
"ui/puzzle",
"ui/round",
"ui/serviceWorker",
"ui/simul",
"ui/site",
"ui/swiss",
"ui/tournament",
"ui/tournamentSchedule",
"ui/tournamentCalendar",
"ui/tree",
"ui/msg",
"ui/dgt",
"ui/puz",
"ui/storm",
"ui/racer",
"ui/@build/rollupProject",
"ui/@types/lichess",
"ui/@types/cash"
]
}