forked from gbtami/pychess-variants
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
65 lines (65 loc) · 1.88 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
{
"name": "liantichess",
"version": "0.0.2",
"private": true,
"description": "Antichess Variants Server",
"repository": {
"type": "git",
"url": "https://github.com/SriMethan/liantichess.git"
},
"main": "static/pychess-variants.js",
"author": "Bajusz Tamás And SriMethan",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/SriMethan/liantichess/issues"
},
"funding": "patreon.com/srimethan",
"dependencies": {
"@fullcalendar/core": "^6.0.3",
"@fullcalendar/daygrid": "^6.0.3",
"@fullcalendar/interaction": "^6.0.3",
"@fullcalendar/list": "^6.0.3",
"@fullcalendar/timegrid": "^6.0.3",
"chessgroundx": "^10.5.1",
"fairy-stockfish-nnue.wasm": "^1.1.2",
"ffish-es6": "^0.7.4",
"gettext.js": "^2.0.0",
"highcharts": "^11.0.0",
"howler": "^2.2.3",
"html-to-image": "^1.11.11",
"idb-keyval": "^6.2.0",
"mousetrap": "^1.6.5",
"snabbdom": "^3.5.1",
"websocket-heartbeat-js": "^1.1.3"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/gettext.js": "^1.0.0",
"@types/howler": "^2.2.4",
"@types/mocha": "^10.0.0",
"@types/mousetrap": "^1.6.11",
"chai": "^4.2.0",
"esbuild": "^0.19.2",
"esbuild-plugin-compress": "^1.0.1",
"esm": "^3.2.25",
"jsdom": "^22.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.0.0",
"postcss": "8.x",
"showdown": "^2.1.0",
"ts-mocha": "^10.0.0",
"tslib": "^2.3.1",
"typescript": "^5.0",
"yarn": "^1.22.17",
"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": "ts-mocha --extension ts --require esm --require jsdom-global/register 'tests/**/*.test.ts'"
}
}