forked from gbtami/pychess-variants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.99 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
{
"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"
},
"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": {
"chessgroundx": "^9.1.9",
"ffish-es6": "^0.6.7",
"fairy-stockfish-nnue.wasm": "^1.0.0",
"gettext.js": "^1.0.1",
"highcharts": "^10.0.0",
"howler": "^2.1.3",
"html-to-image": "^1.8.5",
"snabbdom": "^3.1.0",
"sockette": "^2.0",
"@fullcalendar/core": "^5.10.1",
"@fullcalendar/daygrid": "^5.10.1",
"@fullcalendar/interaction": "^5.10.1",
"@fullcalendar/list": "^5.10.1",
"@fullcalendar/timegrid": "^5.10.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.5",
"@rollup/plugin-typescript": "^8.2.5",
"@types/chai": "^4.2.12",
"@types/gettext.js": "^1.0.0",
"@types/howler": "^2.2.4",
"@types/mocha": "^9.1.0",
"chai": "^4.2.0",
"esm": "^3.2.25",
"jsdom": "^19.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^9.1.4",
"po2json": "^0.4.5",
"postcss": "8.x",
"rollup": "^2.57.0",
"rollup-plugin-brotli": "^3.1.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"showdown": "^1.9.1",
"ts-mocha": "^9.0.2",
"tslib": "^2.3.1",
"typescript": "^4.1",
"yarn": "^1.22.17",
"zlib": "^1.0.5"
},
"scripts": {
"postinstall": "./cp2static.sh",
"dev": "rollup --config rollup.config.dev.js",
"prod": "rollup --config rollup.config.prod.js",
"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'"
}
}