forked from kezsulap/pychess-variants
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "pychess-variants",
"version": "0.0.2",
"private": true,
"description": "Play different chess variants not available on lichess",
"main": "static/pychess-variants.js",
"author": "Bajusz Tamás",
"license": "AGPL-3.0",
"dependencies": {
"chessgroundx": "^9.1.4",
"ffish-es6": "^0.6.5",
"gettext.js": "^1.0.1",
"highcharts": "^9.1.0",
"howler": "^2.1.3",
"html-to-image": "^1.8.5",
"snabbdom": "^3.1.0",
"sockette": "^2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@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": "^8.0.1",
"chai": "^4.2.0",
"esm": "^3.2.25",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.1.0",
"po2json": "^0.4.5",
"rollup": "^2.57.0",
"rollup-plugin-brotli": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"showdown": "^1.9.1",
"ts-mocha": "^8.0.0",
"tslib": "^2.3.1",
"typescript": "^4.1",
"yarn": "^1.17.3",
"zlib": "^1.0.5"
},
"scripts": {
"postinstall": "cp ./node_modules/ffish-es6/ffish.wasm static/ffish.wasm",
"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'"
}
}