forked from gbtami/pychess-variants
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
92 lines (92 loc) · 2.32 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
83
84
85
86
87
88
89
90
91
92
{
"name": "pychess-variants",
"version": "0.0.2",
"private": true,
"description": "free, open-source chess server designed to play chess variants.",
"repository": {
"type": "git",
"url": "https://github.com/gbtami/pychess-variants.git"
},
"engines": {
"node": "20.x",
"yarn": "1.x"
},
"main": "static/pychess-variants.js",
"author": "Bajusz Tamás",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/gbtami/pychess-variants/issues"
},
"funding": "patreon.com/pychess",
"dependencies": {
"@fullcalendar/core": "^6.1.13",
"@fullcalendar/daygrid": "^6.1.13",
"@fullcalendar/interaction": "^6.1.13",
"@fullcalendar/list": "^6.1.13",
"@fullcalendar/timegrid": "^6.1.13",
"chessgroundx": "^10.6.2",
"chessops": "^0.14.1",
"fairy-stockfish-nnue.wasm": "^1.1.8",
"ffish-es6": "^0.7.6",
"gettext.js": "^2.0.2",
"highcharts": "^11.4.6",
"howler": "^2.2.3",
"html-to-image": "^1.11.11",
"idb-keyval": "^6.2.1",
"mousetrap": "^1.6.5",
"snabbdom": "^3.6.2"
},
"devDependencies": {
"@types/gettext.js": "^1.0.0",
"@types/howler": "^2.2.4",
"@types/mousetrap": "^1.6.11",
"@jest/globals": "^29",
"jest": "^29",
"ts-jest": "^29",
"jest-environment-jsdom": "^29",
"esbuild": "^0.23.0",
"esbuild-plugin-compress": "^1.0.1",
"esm": "^3.2.25",
"jsdom": "^24.1.1",
"jsdom-global": "^3.0.2",
"postcss": "8.x",
"showdown": "^2.1.0",
"tslib": "^2.3.1",
"typescript": "^5.4",
"yarn": "^1.22.22",
"zlib": "^1.0.5"
},
"scripts": {
"postinstall": "./cp2static.sh",
"typecheck": "./node_modules/typescript/bin/tsc --noEmit",
"dev": "node esbuild.mjs dev",
"prod": "node esbuild.mjs prod",
"md": "./md2html.sh",
"heroku-postbuild": "yarn run prod && yarn run md",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"files": [
"/client",
"!/**/*.test.*"
],
"jest": {
"testEnvironment": "jsdom",
"testRegex": ".*\\.test\\.ts$",
"transform": {
"\\.[jt]sx?$": [
"ts-jest",
{
"useESM": true,
"isolatedModules": true
}
]
},
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^gettext": "gettext.js",
"(.+)\\.js": "$1"
}
}
}